logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

xt_iprange.h (581B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _LINUX_NETFILTER_XT_IPRANGE_H
  3. #define _LINUX_NETFILTER_XT_IPRANGE_H 1
  4. #include <linux/types.h>
  5. #include <linux/netfilter.h>
  6. enum {
  7. IPRANGE_SRC = 1 << 0, /* match source IP address */
  8. IPRANGE_DST = 1 << 1, /* match destination IP address */
  9. IPRANGE_SRC_INV = 1 << 4, /* negate the condition */
  10. IPRANGE_DST_INV = 1 << 5, /* -"- */
  11. };
  12. struct xt_iprange_mtinfo {
  13. union nf_inet_addr src_min, src_max;
  14. union nf_inet_addr dst_min, dst_max;
  15. __u8 flags;
  16. };
  17. #endif /* _LINUX_NETFILTER_XT_IPRANGE_H */