GOLDEN HOUR
DIR: /usr/include/linux/netfilter
UP
UPLOAD
Name
Size
Action
[ ipset ]
-
DEL
nf_conntrack_common.h
4.48 KB
DEL
nf_conntrack_ftp.h
438 B
DEL
nf_conntrack_sctp.h
597 B
DEL
nf_conntrack_tcp.h
1.38 KB
DEL
nf_conntrack_tuple_common.h
896 B
DEL
nf_log.h
538 B
DEL
nf_nat.h
1.55 KB
DEL
nf_synproxy.h
576 B
DEL
nf_tables.h
56.89 KB
DEL
nf_tables_compat.h
731 B
DEL
nfnetlink.h
2.4 KB
DEL
nfnetlink_acct.h
900 B
DEL
nfnetlink_compat.h
2.39 KB
DEL
nfnetlink_conntrack.h
6.04 KB
DEL
nfnetlink_cthelper.h
1.18 KB
DEL
nfnetlink_cttimeout.h
2.88 KB
DEL
nfnetlink_hook.h
1.65 KB
DEL
nfnetlink_log.h
3.03 KB
DEL
nfnetlink_osf.h
2.6 KB
DEL
nfnetlink_queue.h
3.5 KB
DEL
x_tables.h
4.36 KB
DEL
xt_AUDIT.h
718 B
DEL
xt_CHECKSUM.h
563 B
DEL
xt_CLASSIFY.h
217 B
DEL
xt_CONNMARK.h
199 B
DEL
xt_CONNSECMARK.h
301 B
DEL
xt_CT.h
853 B
DEL
xt_DSCP.h
697 B
DEL
xt_HMARK.h
933 B
DEL
xt_IDLETIMER.h
1.6 KB
DEL
xt_LED.h
470 B
DEL
xt_LOG.h
642 B
DEL
xt_MARK.h
184 B
DEL
xt_NFLOG.h
556 B
DEL
xt_NFQUEUE.h
779 B
DEL
xt_RATEEST.h
390 B
DEL
xt_SECMARK.h
648 B
DEL
xt_SYNPROXY.h
498 B
DEL
xt_TCPMSS.h
235 B
DEL
xt_TCPOPTSTRIP.h
407 B
DEL
xt_TEE.h
333 B
DEL
xt_TPROXY.h
575 B
DEL
xt_addrtype.h
1.06 KB
DEL
xt_bpf.h
935 B
DEL
xt_cgroup.h
740 B
DEL
xt_cluster.h
374 B
DEL
xt_comment.h
230 B
DEL
xt_connbytes.h
577 B
DEL
xt_connlabel.h
360 B
DEL
xt_connlimit.h
575 B
DEL
xt_connmark.h
901 B
DEL
xt_conntrack.h
2.5 KB
DEL
xt_cpu.h
199 B
DEL
xt_dccp.h
483 B
DEL
xt_devgroup.h
429 B
DEL
xt_dscp.h
701 B
DEL
xt_ecn.h
736 B
DEL
xt_esp.h
418 B
DEL
xt_hashlimit.h
3.18 KB
DEL
xt_helper.h
188 B
DEL
xt_ipcomp.h
485 B
DEL
xt_iprange.h
581 B
DEL
xt_ipvs.h
680 B
DEL
xt_l2tp.h
739 B
DEL
xt_length.h
221 B
DEL
xt_limit.h
673 B
DEL
xt_mac.h
227 B
DEL
xt_mark.h
260 B
DEL
xt_multiport.h
721 B
DEL
xt_nfacct.h
421 B
DEL
xt_osf.h
1.66 KB
DEL
xt_owner.h
535 B
DEL
xt_physdev.h
553 B
DEL
xt_pkttype.h
188 B
DEL
xt_policy.h
1.03 KB
DEL
xt_quota.h
400 B
DEL
xt_rateest.h
859 B
DEL
xt_realm.h
220 B
DEL
xt_recent.h
1.03 KB
DEL
xt_rpfilter.h
320 B
DEL
xt_sctp.h
2.27 KB
DEL
xt_set.h
1.78 KB
DEL
xt_socket.h
640 B
DEL
xt_state.h
331 B
DEL
xt_statistic.h
716 B
DEL
xt_string.h
664 B
DEL
xt_tcpmss.h
253 B
DEL
xt_tcpudp.h
1.22 KB
DEL
xt_time.h
730 B
DEL
xt_u32.h
752 B
DEL
Edit: xt_policy.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _XT_POLICY_H #define _XT_POLICY_H #include <linux/netfilter.h> #include <linux/types.h> #include <linux/in.h> #include <linux/in6.h> #define XT_POLICY_MAX_ELEM 4 enum xt_policy_flags { XT_POLICY_MATCH_IN = 0x1, XT_POLICY_MATCH_OUT = 0x2, XT_POLICY_MATCH_NONE = 0x4, XT_POLICY_MATCH_STRICT = 0x8, }; enum xt_policy_modes { XT_POLICY_MODE_TRANSPORT, XT_POLICY_MODE_TUNNEL }; struct xt_policy_spec { __u8 saddr:1, daddr:1, proto:1, mode:1, spi:1, reqid:1; }; union xt_policy_addr { struct in_addr a4; struct in6_addr a6; }; struct xt_policy_elem { union { struct { union xt_policy_addr saddr; union xt_policy_addr smask; union xt_policy_addr daddr; union xt_policy_addr dmask; }; }; __be32 spi; __u32 reqid; __u8 proto; __u8 mode; struct xt_policy_spec match; struct xt_policy_spec invert; }; struct xt_policy_info { struct xt_policy_elem pol[XT_POLICY_MAX_ELEM]; __u16 flags; __u16 len; }; #endif /* _XT_POLICY_H */
SAVE FILE
TERMINAL
EXEC