diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-08-06 04:43:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-08-15 02:17:26 -0400 |
commit | 2ce955035081112cf1590c961da8d94324142b5e (patch) | |
tree | 1c9c9afdcac42e283a7383fa67842470753a0bb4 /include/net/netns | |
parent | 4db67e808640e3934d82ce61ee8e2e89fd877ba8 (diff) |
sctp: Make the ctl_sock per network namespace
- Kill sctp_get_ctl_sock, it is useless now.
- Pass struct net where needed so net->sctp.ctl_sock is accessible.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/sctp.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/netns/sctp.h b/include/net/netns/sctp.h index cbd684e01cf7..29e36b4b4feb 100644 --- a/include/net/netns/sctp.h +++ b/include/net/netns/sctp.h | |||
@@ -1,7 +1,15 @@ | |||
1 | #ifndef __NETNS_SCTP_H__ | 1 | #ifndef __NETNS_SCTP_H__ |
2 | #define __NETNS_SCTP_H__ | 2 | #define __NETNS_SCTP_H__ |
3 | 3 | ||
4 | struct sock; | ||
5 | |||
4 | struct netns_sctp { | 6 | struct netns_sctp { |
7 | /* This is the global socket data structure used for responding to | ||
8 | * the Out-of-the-blue (OOTB) packets. A control sock will be created | ||
9 | * for this socket at the initialization time. | ||
10 | */ | ||
11 | struct sock *ctl_sock; | ||
12 | |||
5 | /* This is the global local address list. | 13 | /* This is the global local address list. |
6 | * We actively maintain this complete list of addresses on | 14 | * We actively maintain this complete list of addresses on |
7 | * the system by catching address add/delete events. | 15 | * the system by catching address add/delete events. |