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_set.h
#ifndef _XT_SET_H #define _XT_SET_H #include <linux/types.h> #include <linux/netfilter/ipset/ip_set.h> /* Revision 0 interface: backward compatible with netfilter/iptables */ /* * Option flags for kernel operations (xt_set_info_v0) */ #define IPSET_SRC 0x01 /* Source match/add */ #define IPSET_DST 0x02 /* Destination match/add */ #define IPSET_MATCH_INV 0x04 /* Inverse matching */ struct xt_set_info_v0 { ip_set_id_t index; union { __u32 flags[IPSET_DIM_MAX + 1]; struct { __u32 __flags[IPSET_DIM_MAX]; __u8 dim; __u8 flags; } compat; } u; }; /* match and target infos */ struct xt_set_info_match_v0 { struct xt_set_info_v0 match_set; }; struct xt_set_info_target_v0 { struct xt_set_info_v0 add_set; struct xt_set_info_v0 del_set; }; /* Revision 1 match and target */ struct xt_set_info { ip_set_id_t index; __u8 dim; __u8 flags; }; /* match and target infos */ struct xt_set_info_match_v1 { struct xt_set_info match_set; }; struct xt_set_info_target_v1 { struct xt_set_info add_set; struct xt_set_info del_set; }; /* Revision 2 target */ struct xt_set_info_target_v2 { struct xt_set_info add_set; struct xt_set_info del_set; __u32 flags; __u32 timeout; }; /* Revision 3 match */ struct xt_set_info_match_v3 { struct xt_set_info match_set; struct ip_set_counter_match packets; struct ip_set_counter_match bytes; __u32 flags; }; #endif /*_XT_SET_H*/
Save