aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-03-24 18:34:06 -0400
committerDavid S. Miller <davem@davemloft.net>2008-03-24 18:34:06 -0400
commit92f1fecb45ef97acae94463302f79228a4b454d9 (patch)
tree4f81435f20f903e7f51c47e53edac50b8ffb73e8 /net/ipv4
parent2342fd7e146f05edeb13feb03490c13a1bdab2e0 (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')
-rw-r--r--net/ipv4/af_inet.c3
-rw-r--r--net/ipv4/udplite.c1
2 files changed, 4 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
1307static struct net_protocol udp_protocol = { 1308static 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
1313static struct net_protocol icmp_protocol = { 1315static 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
1318static int __init init_ipv4_mibs(void) 1321static int __init init_ipv4_mibs(void)
diff --git a/net/ipv4/udplite.c b/net/ipv4/udplite.c
index ddf4cc432796..53f3ed496328 100644
--- a/net/ipv4/udplite.c
+++ b/net/ipv4/udplite.c
@@ -31,6 +31,7 @@ static struct net_protocol udplite_protocol = {
31 .handler = udplite_rcv, 31 .handler = udplite_rcv,
32 .err_handler = udplite_err, 32 .err_handler = udplite_err,
33 .no_policy = 1, 33 .no_policy = 1,
34 .netns_ok = 1,
34}; 35};
35 36
36DEFINE_PROTO_INUSE(udplite) 37DEFINE_PROTO_INUSE(udplite)