tc_nat.h 417 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NET_TC_NAT_H
  3. #define __NET_TC_NAT_H
  4. #include <linux/types.h>
  5. #include <net/act_api.h>
  6. struct tcf_nat_parms {
  7. int action;
  8. __be32 old_addr;
  9. __be32 new_addr;
  10. __be32 mask;
  11. u32 flags;
  12. struct rcu_head rcu;
  13. };
  14. struct tcf_nat {
  15. struct tc_action common;
  16. struct tcf_nat_parms __rcu *parms;
  17. };
  18. #define to_tcf_nat(a) ((struct tcf_nat *)a)
  19. #endif /* __NET_TC_NAT_H */