conntrack.h 175 字节
Newer Older
1 2 3
#ifndef __NETNS_CONNTRACK_H
#define __NETNS_CONNTRACK_H

4 5
#include <asm/atomic.h>

6
struct netns_ct {
7
	atomic_t		count;
8 9
	struct hlist_head	*hash;
	int			hash_vmalloc;
10 11
};
#endif