#ifndef _DCCP_IPV6_H1#define _DCCP_IPV6_H2/*3* net/dccp/ipv6.h4*5* An implementation of the DCCP protocol6* Copyright (c) 2005 Arnaldo Carvalho de Melo <[email protected]>7*8* This program is free software; you can redistribute it and/or modify it9* under the terms of the GNU General Public License version 2 as10* published by the Free Software Foundation.11*/1213#include <linux/dccp.h>14#include <linux/ipv6.h>1516struct dccp6_sock {17struct dccp_sock dccp;18/*19* ipv6_pinfo has to be the last member of dccp6_sock,20* see inet6_sk_generic.21*/22struct ipv6_pinfo inet6;23};2425struct dccp6_request_sock {26struct dccp_request_sock dccp;27struct inet6_request_sock inet6;28};2930struct dccp6_timewait_sock {31struct inet_timewait_sock inet;32struct inet6_timewait_sock tw6;33};3435#endif /* _DCCP_IPV6_H */363738