dect
/
linux-2.6
Archived
13
0
Fork 0

[NETNS][IPV6]: Add ipv6 structure for netns.

Like the ipv4 part, this patch adds an ipv6 structure in the net
structure to aggregate the different resources to make ipv6 per
namespace.

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Daniel Lezcano 2008-01-10 02:49:06 -08:00 committed by David S. Miller
parent 81c1c17804
commit b0f159db7c
2 changed files with 14 additions and 0 deletions

View File

@ -11,6 +11,7 @@
#include <net/netns/unix.h>
#include <net/netns/packet.h>
#include <net/netns/ipv4.h>
#include <net/netns/ipv6.h>
struct proc_dir_entry;
struct net_device;
@ -48,6 +49,9 @@ struct net {
struct netns_packet packet;
struct netns_unix unx;
struct netns_ipv4 ipv4;
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
struct netns_ipv6 ipv6;
#endif
};
#ifdef CONFIG_NET

10
include/net/netns/ipv6.h Normal file
View File

@ -0,0 +1,10 @@
/*
* ipv6 in net namespaces
*/
#ifndef __NETNS_IPV6_H__
#define __NETNS_IPV6_H__
struct netns_ipv6 {
};
#endif