mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
0204774191
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>
12 lines
146 B
C
12 lines
146 B
C
#ifndef __NETNS_DCCP_H__
|
|
#define __NETNS_DCCP_H__
|
|
|
|
struct sock;
|
|
|
|
struct netns_dccp {
|
|
struct sock *v4_ctl_sk;
|
|
struct sock *v6_ctl_sk;
|
|
};
|
|
|
|
#endif
|