diff options
author | Denis V. Lunev <den@openvz.org> | 2008-03-24 18:34:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-24 18:34:06 -0400 |
commit | 92f1fecb45ef97acae94463302f79228a4b454d9 (patch) | |
tree | 4f81435f20f903e7f51c47e53edac50b8ffb73e8 /net/ipv4/af_inet.c | |
parent | 2342fd7e146f05edeb13feb03490c13a1bdab2e0 (diff) |
[NETNS]: Enable TCP/UDP/ICMP inside namespace.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/af_inet.c')
-rw-r--r-- | net/ipv4/af_inet.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index 39ddb84b1b78..06cfb0bed631 100644 --- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c | |||
@@ -1302,17 +1302,20 @@ static struct net_protocol tcp_protocol = { | |||
1302 | .gso_send_check = tcp_v4_gso_send_check, | 1302 | .gso_send_check = tcp_v4_gso_send_check, |
1303 | .gso_segment = tcp_tso_segment, | 1303 | .gso_segment = tcp_tso_segment, |
1304 | .no_policy = 1, | 1304 | .no_policy = 1, |
1305 | .netns_ok = 1, | ||
1305 | }; | 1306 | }; |
1306 | 1307 | ||
1307 | static struct net_protocol udp_protocol = { | 1308 | static struct net_protocol udp_protocol = { |
1308 | .handler = udp_rcv, | 1309 | .handler = udp_rcv, |
1309 | .err_handler = udp_err, | 1310 | .err_handler = udp_err, |
1310 | .no_policy = 1, | 1311 | .no_policy = 1, |
1312 | .netns_ok = 1, | ||
1311 | }; | 1313 | }; |
1312 | 1314 | ||
1313 | static struct net_protocol icmp_protocol = { | 1315 | static struct net_protocol icmp_protocol = { |
1314 | .handler = icmp_rcv, | 1316 | .handler = icmp_rcv, |
1315 | .no_policy = 1, | 1317 | .no_policy = 1, |
1318 | .netns_ok = 1, | ||
1316 | }; | 1319 | }; |
1317 | 1320 | ||
1318 | static int __init init_ipv4_mibs(void) | 1321 | static int __init init_ipv4_mibs(void) |