conntrack.h 175 B

1234567891011
  1. #ifndef __NETNS_CONNTRACK_H
  2. #define __NETNS_CONNTRACK_H
  3. #include <asm/atomic.h>
  4. struct netns_ct {
  5. atomic_t count;
  6. struct hlist_head *hash;
  7. int hash_vmalloc;
  8. };
  9. #endif