x_tables.h 181 B

12345678910
  1. #ifndef __NETNS_X_TABLES_H
  2. #define __NETNS_X_TABLES_H
  3. #include <linux/list.h>
  4. #include <linux/netfilter.h>
  5. struct netns_xt {
  6. struct list_head tables[NFPROTO_NUMPROTO];
  7. };
  8. #endif