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: nf_conntrack_tcp.h
#ifndef _NF_CONNTRACK_TCP_H #define _NF_CONNTRACK_TCP_H /* TCP tracking. */ #include <linux/types.h> /* This is exposed to userspace (ctnetlink) */ enum tcp_conntrack { TCP_CONNTRACK_NONE, TCP_CONNTRACK_SYN_SENT, TCP_CONNTRACK_SYN_RECV, TCP_CONNTRACK_ESTABLISHED, TCP_CONNTRACK_FIN_WAIT, TCP_CONNTRACK_CLOSE_WAIT, TCP_CONNTRACK_LAST_ACK, TCP_CONNTRACK_TIME_WAIT, TCP_CONNTRACK_CLOSE, TCP_CONNTRACK_LISTEN, /* obsolete */ #define TCP_CONNTRACK_SYN_SENT2 TCP_CONNTRACK_LISTEN TCP_CONNTRACK_MAX, TCP_CONNTRACK_IGNORE, TCP_CONNTRACK_RETRANS, TCP_CONNTRACK_UNACK, TCP_CONNTRACK_TIMEOUT_MAX }; /* Window scaling is advertised by the sender */ #define IP_CT_TCP_FLAG_WINDOW_SCALE 0x01 /* SACK is permitted by the sender */ #define IP_CT_TCP_FLAG_SACK_PERM 0x02 /* This sender sent FIN first */ #define IP_CT_TCP_FLAG_CLOSE_INIT 0x04 /* Be liberal in window checking */ #define IP_CT_TCP_FLAG_BE_LIBERAL 0x08 /* Has unacknowledged data */ #define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED 0x10 /* The field td_maxack has been set */ #define IP_CT_TCP_FLAG_MAXACK_SET 0x20 /* Marks possibility for expected RFC5961 challenge ACK */ #define IP_CT_EXP_CHALLENGE_ACK 0x40 struct nf_ct_tcp_flags { __u8 flags; __u8 mask; }; #endif /* _NF_CONNTRACK_TCP_H */
Save