x_tables.h 165 B

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