2008-10-08 18:35:02 +09:00
|
|
|
#ifndef __NETNS_CONNTRACK_H
|
|
|
|
#define __NETNS_CONNTRACK_H
|
|
|
|
|
2008-10-08 18:35:03 +09:00
|
|
|
#include <asm/atomic.h>
|
|
|
|
|
2008-10-08 18:35:02 +09:00
|
|
|
struct netns_ct {
|
2008-10-08 18:35:03 +09:00
|
|
|
atomic_t count;
|
2008-10-08 18:35:03 +09:00
|
|
|
struct hlist_head *hash;
|
|
|
|
int hash_vmalloc;
|
2008-10-08 18:35:02 +09:00
|
|
|
};
|
|
|
|
#endif
|