tc_ipt.h 196 B

12345678910111213141516
  1. #ifndef __NET_TC_IPT_H
  2. #define __NET_TC_IPT_H
  3. #include <net/act_api.h>
  4. struct ipt_entry_target;
  5. struct tcf_ipt
  6. {
  7. tca_gen(ipt);
  8. u32 hook;
  9. char *tname;
  10. struct ipt_entry_target *t;
  11. };
  12. #endif