Hans Schillstrom | 61b1ab4 | 2011-01-03 14:44:42 +0100 | [diff] [blame^] | 1 | /* |
2 | * IP Virtual Server | ||||
3 | * Data structure for network namspace | ||||
4 | * | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef IP_VS_H_ | ||||
8 | #define IP_VS_H_ | ||||
9 | |||||
10 | #include <linux/list.h> | ||||
11 | #include <linux/mutex.h> | ||||
12 | #include <linux/list_nulls.h> | ||||
13 | #include <linux/ip_vs.h> | ||||
14 | #include <asm/atomic.h> | ||||
15 | #include <linux/in.h> | ||||
16 | |||||
17 | struct ip_vs_stats; | ||||
18 | struct ip_vs_sync_buff; | ||||
19 | struct ctl_table_header; | ||||
20 | |||||
21 | struct netns_ipvs { | ||||
22 | int gen; /* Generation */ | ||||
23 | }; | ||||
24 | |||||
25 | #endif /* IP_VS_H_ */ |