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_HMARK.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef XT_HMARK_H_ #define XT_HMARK_H_ #include <linux/types.h> #include <linux/netfilter.h> enum { XT_HMARK_SADDR_MASK, XT_HMARK_DADDR_MASK, XT_HMARK_SPI, XT_HMARK_SPI_MASK, XT_HMARK_SPORT, XT_HMARK_DPORT, XT_HMARK_SPORT_MASK, XT_HMARK_DPORT_MASK, XT_HMARK_PROTO_MASK, XT_HMARK_RND, XT_HMARK_MODULUS, XT_HMARK_OFFSET, XT_HMARK_CT, XT_HMARK_METHOD_L3, XT_HMARK_METHOD_L3_4, }; #define XT_HMARK_FLAG(flag) (1 << flag) union hmark_ports { struct { __u16 src; __u16 dst; } p16; struct { __be16 src; __be16 dst; } b16; __u32 v32; __be32 b32; }; struct xt_hmark_info { union nf_inet_addr src_mask; union nf_inet_addr dst_mask; union hmark_ports port_mask; union hmark_ports port_set; __u32 flags; __u16 proto_mask; __u32 hashrnd; __u32 hmodulus; __u32 hoffset; /* Mark offset to start from */ }; #endif /* XT_HMARK_H_ */
SAVE FILE
TERMINAL
EXEC