Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 #ifndef _DCCP_IPV6_H
0003 #define _DCCP_IPV6_H
0004 /*
0005  *  net/dccp/ipv6.h
0006  *
0007  *  An implementation of the DCCP protocol
0008  *  Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
0009  */
0010 
0011 #include <linux/dccp.h>
0012 #include <linux/ipv6.h>
0013 
0014 struct dccp6_sock {
0015     struct dccp_sock  dccp;
0016     /*
0017      * ipv6_pinfo has to be the last member of dccp6_sock,
0018      * see inet6_sk_generic.
0019      */
0020     struct ipv6_pinfo inet6;
0021 };
0022 
0023 struct dccp6_request_sock {
0024     struct dccp_request_sock  dccp;
0025 };
0026 
0027 struct dccp6_timewait_sock {
0028     struct inet_timewait_sock   inet;
0029 };
0030 
0031 #endif /* _DCCP_IPV6_H */