golden hour
/usr/include/linux/netfilter
⬆️ Go Up
Upload
File/Folder
Size
Actions
ipset
-
Del
OK
nf_conntrack_common.h
3.81 KB
Del
OK
nf_conntrack_ftp.h
375 B
Del
OK
nf_conntrack_sctp.h
595 B
Del
OK
nf_conntrack_tcp.h
1.24 KB
Del
OK
nf_conntrack_tuple_common.h
708 B
Del
OK
nf_nat.h
1.12 KB
Del
OK
nf_tables.h
31.31 KB
Del
OK
nf_tables_compat.h
668 B
Del
OK
nfnetlink.h
2.01 KB
Del
OK
nfnetlink_acct.h
522 B
Del
OK
nfnetlink_compat.h
2.33 KB
Del
OK
nfnetlink_conntrack.h
5.42 KB
Del
OK
nfnetlink_cthelper.h
1.11 KB
Del
OK
nfnetlink_cttimeout.h
2.8 KB
Del
OK
nfnetlink_log.h
2.51 KB
Del
OK
nfnetlink_queue.h
2.88 KB
Del
OK
x_tables.h
4.3 KB
Del
OK
xt_AUDIT.h
655 B
Del
OK
xt_CHECKSUM.h
500 B
Del
OK
xt_CLASSIFY.h
154 B
Del
OK
xt_CONNMARK.h
136 B
Del
OK
xt_CONNSECMARK.h
238 B
Del
OK
xt_CT.h
790 B
Del
OK
xt_DSCP.h
709 B
Del
OK
xt_HMARK.h
841 B
Del
OK
xt_IDLETIMER.h
1.3 KB
Del
OK
xt_LED.h
407 B
Del
OK
xt_LOG.h
579 B
Del
OK
xt_MARK.h
121 B
Del
OK
xt_NFLOG.h
326 B
Del
OK
xt_NFQUEUE.h
716 B
Del
OK
xt_RATEEST.h
305 B
Del
OK
xt_SECMARK.h
486 B
Del
OK
xt_TCPMSS.h
172 B
Del
OK
xt_TCPOPTSTRIP.h
344 B
Del
OK
xt_TEE.h
240 B
Del
OK
xt_TPROXY.h
483 B
Del
OK
xt_addrtype.h
1021 B
Del
OK
xt_bpf.h
340 B
Del
OK
xt_cgroup.h
149 B
Del
OK
xt_cluster.h
311 B
Del
OK
xt_comment.h
167 B
Del
OK
xt_connbytes.h
514 B
Del
OK
xt_connlabel.h
217 B
Del
OK
xt_connlimit.h
571 B
Del
OK
xt_connmark.h
853 B
Del
OK
xt_conntrack.h
2.99 KB
Del
OK
xt_cpu.h
136 B
Del
OK
xt_dccp.h
420 B
Del
OK
xt_devgroup.h
366 B
Del
OK
xt_dscp.h
638 B
Del
OK
xt_ecn.h
673 B
Del
OK
xt_esp.h
355 B
Del
OK
xt_hashlimit.h
1.83 KB
Del
OK
xt_helper.h
125 B
Del
OK
xt_iprange.h
518 B
Del
OK
xt_ipvs.h
588 B
Del
OK
xt_length.h
158 B
Del
OK
xt_limit.h
610 B
Del
OK
xt_mac.h
135 B
Del
OK
xt_mark.h
473 B
Del
OK
xt_multiport.h
658 B
Del
OK
xt_nfacct.h
238 B
Del
OK
xt_osf.h
3.27 KB
Del
OK
xt_owner.h
557 B
Del
OK
xt_physdev.h
469 B
Del
OK
xt_pkttype.h
125 B
Del
OK
xt_policy.h
914 B
Del
OK
xt_quota.h
337 B
Del
OK
xt_rateest.h
774 B
Del
OK
xt_realm.h
157 B
Del
OK
xt_recent.h
966 B
Del
OK
xt_rpfilter.h
257 B
Del
OK
xt_sctp.h
2.22 KB
Del
OK
xt_set.h
1.38 KB
Del
OK
xt_socket.h
382 B
Del
OK
xt_state.h
268 B
Del
OK
xt_statistic.h
653 B
Del
OK
xt_string.h
601 B
Del
OK
xt_tcpmss.h
190 B
Del
OK
xt_tcpudp.h
1.16 KB
Del
OK
xt_time.h
667 B
Del
OK
xt_u32.h
689 B
Del
OK
Edit: xt_HMARK.h
#ifndef XT_HMARK_H_ #define XT_HMARK_H_ #include <linux/types.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