aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netns/dccp.h
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-04-14 01:29:37 -0400
committerDavid S. Miller <davem@davemloft.net>2008-04-14 01:29:37 -0400
commit7b1cffa8c90269dc3dc721d084d1e0d742d87c31 (patch)
tree790914a5574a2cf33a7ee3672629bf0a31f77b71 /include/net/netns/dccp.h
parent72a2d6138224298a576bcdc33d7d0004de604856 (diff)
[NETNS][DCCPV4]: Move the dccp_v4_ctl_sk on the struct net.
And replace all its usage with init_net's socket. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns/dccp.h')
-rw-r--r--include/net/netns/dccp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/netns/dccp.h b/include/net/netns/dccp.h
index 056e6adc70b6..e4f16faa898a 100644
--- a/include/net/netns/dccp.h
+++ b/include/net/netns/dccp.h
@@ -1,7 +1,10 @@
1#ifndef __NETNS_DCCP_H__ 1#ifndef __NETNS_DCCP_H__
2#define __NETNS_DCCP_H__ 2#define __NETNS_DCCP_H__
3 3
4struct sock;
5
4struct netns_dccp { 6struct netns_dccp {
7 struct sock *v4_ctl_sk;
5}; 8};
6 9
7#endif 10#endif