Merge tag 'ntfs3_for_6.2' of https://github.com/Paragon-Software-Group/linux-ntfs3
[linux-2.6-block.git] / net / dccp / ipv6.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
3df80d93
ACM
2#ifndef _DCCP_IPV6_H
3#define _DCCP_IPV6_H
4/*
5 * net/dccp/ipv6.h
6 *
7 * An implementation of the DCCP protocol
8 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
3df80d93
ACM
9 */
10
3df80d93
ACM
11#include <linux/dccp.h>
12#include <linux/ipv6.h>
13
14struct dccp6_sock {
15 struct dccp_sock dccp;
16 /*
17 * ipv6_pinfo has to be the last member of dccp6_sock,
18 * see inet6_sk_generic.
19 */
20 struct ipv6_pinfo inet6;
21};
22
23struct dccp6_request_sock {
24 struct dccp_request_sock dccp;
3df80d93
ACM
25};
26
27struct dccp6_timewait_sock {
28 struct inet_timewait_sock inet;
3df80d93
ACM
29};
30
31#endif /* _DCCP_IPV6_H */