conntrack.h 260 B

1234567891011121314
  1. #ifndef __NETNS_CONNTRACK_H
  2. #define __NETNS_CONNTRACK_H
  3. #include <asm/atomic.h>
  4. struct netns_ct {
  5. atomic_t count;
  6. unsigned int expect_count;
  7. struct hlist_head *hash;
  8. struct hlist_head *expect_hash;
  9. int hash_vmalloc;
  10. int expect_vmalloc;
  11. };
  12. #endif