x_tables.h 296 B

123456789101112131415
  1. #ifndef __NETNS_X_TABLES_H
  2. #define __NETNS_X_TABLES_H
  3. #include <linux/list.h>
  4. #include <linux/netfilter.h>
  5. struct ebt_table;
  6. struct netns_xt {
  7. struct list_head tables[NFPROTO_NUMPROTO];
  8. struct ebt_table *broute_table;
  9. struct ebt_table *frame_filter;
  10. struct ebt_table *frame_nat;
  11. };
  12. #endif