conntrack.h 316 B

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