tc_nat.h 320 B

1234567891011121314151617181920
  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 {
  7. struct tc_action common;
  8. __be32 old_addr;
  9. __be32 new_addr;
  10. __be32 mask;
  11. u32 flags;
  12. };
  13. #define to_tcf_nat(a) ((struct tcf_nat *)a)
  14. #endif /* __NET_TC_NAT_H */