[media] vivid: sdr cap: few enhancements
[linux-2.6/btrfs-unstable.git] / net / dccp / ipv6.h
blobaf259e15e7f0b8c4cb09381bba5423a59c7e5540
1 #ifndef _DCCP_IPV6_H
2 #define _DCCP_IPV6_H
3 /*
4 * net/dccp/ipv6.h
6 * An implementation of the DCCP protocol
7 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/dccp.h>
15 #include <linux/ipv6.h>
17 struct dccp6_sock {
18 struct dccp_sock dccp;
20 * ipv6_pinfo has to be the last member of dccp6_sock,
21 * see inet6_sk_generic.
23 struct ipv6_pinfo inet6;
26 struct dccp6_request_sock {
27 struct dccp_request_sock dccp;
30 struct dccp6_timewait_sock {
31 struct inet_timewait_sock inet;
34 #endif /* _DCCP_IPV6_H */