summaryrefslogblamecommitdiff
path: root/include/net/netns/ipv4.h
blob: a7bd5d83e43edef633c5ad59f30ed9b77f42b993 (plain) (tree)
1
2
3
4
5
6
7
8
9





                         
 

                        
                     
 
                   
                    
                                          
      

                                              


                                           

      
/*
 * ipv4 in net namespaces
 */

#ifndef __NETNS_IPV4_H__
#define __NETNS_IPV4_H__

struct ctl_table_header;
struct ipv4_devconf;
struct fib_rules_ops;

struct netns_ipv4 {
#ifdef CONFIG_SYSCTL
	struct ctl_table_header	*forw_hdr;
#endif
	struct ipv4_devconf	*devconf_all;
	struct ipv4_devconf	*devconf_dflt;
#ifdef CONFIG_IP_MULTIPLE_TABLES
	struct fib_rules_ops	*rules_ops;
#endif
};
#endif