Home
last modified time | relevance | path

Searched refs:th_flags (Results 1 – 17 of 17) sorted by relevance

/freebsd/sys/netinet/
H A Dtcp.h61 u_char th_flags; member
85 return (((uint16_t)th->th_x2 << 8) | th->th_flags); in __tcp_get_flags()
92 th->th_flags = flags & 0xff; in __tcp_set_flags()
H A Dtcpip.h53 #define ti_flags ti_t.th_flags
H A Dtcp_output.c140 #define TCP_XMIT_TIMER_ASSERT(tp, len, th_flags) \ argument
141 KASSERT(((len) == 0 && ((th_flags) & (TH_SYN | TH_FIN)) == 0) ||\
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dtcp.h48 uint8_t th_flags; /* (u) */ member
/freebsd/contrib/flex/src/
H A Dtables_shared.h111 flex_uint16_t th_flags; /**< Currently unused, must be 0 */ member
H A Dtables.c92 th->th_flags = 0; in yytbl_hdr_init()
157 || yytbl_write16 (wr, th->th_flags) < 0) in yytbl_hdr_fwrite()
H A Dflex.skl3051 || yytbl_read16 (&(th->th_flags), rd) != 0)
/freebsd/sys/netinet/libalias/
H A Dalias.c191 TcpMonitorIn(uint16_t th_flags, struct alias_link *lnk) in TcpMonitorIn() argument
195 if (th_flags & TH_RST) in TcpMonitorIn()
197 else if (th_flags & TH_SYN) in TcpMonitorIn()
201 if (th_flags & (TH_FIN | TH_RST)) in TcpMonitorIn()
208 TcpMonitorOut(uint16_t th_flags, struct alias_link *lnk) in TcpMonitorOut() argument
212 if (th_flags & TH_RST) in TcpMonitorOut()
214 else if (th_flags & TH_SYN) in TcpMonitorOut()
218 if (th_flags & (TH_FIN | TH_RST)) in TcpMonitorOut()
/freebsd/contrib/tcpdump/
H A Dtcp.h46 nd_uint8_t th_flags; member
H A Dprint-tcp.c250 flags = GET_U_1(tp->th_flags); in tcp_print()
/freebsd/cddl/lib/libdtrace/
H A Dtcp.d269 tcp_flags = p == NULL ? 0 : ((p->th_x2 << 8) | p->th_flags);
288 tcp_flags = p == NULL ? 0 : ((p->th_x2 << 8) | p->th_flags);
/freebsd/sys/dev/cxgbe/crypto/
H A Dt7_kern_tls.c1459 (tcp->th_flags & TH_FIN) != 0) { in ktls_write_tls_wr()
1841 newtcp->th_flags = tcp->th_flags & ~(TH_PUSH | TH_FIN); in ktls_write_tls_wr()
/freebsd/sys/netpfil/ipfw/
H A Dip_fw_dynamic.c956 uint8_t th_flags; in dyn_update_tcp_state() local
960 th_flags = pkt->_flags & (TH_FIN | TH_SYN | TH_RST); in dyn_update_tcp_state()
961 state |= (dir == MATCH_FORWARD) ? th_flags: (th_flags << 8); in dyn_update_tcp_state()
/freebsd/sys/netinet/tcp_stacks/
H A Dbbr.c5865 uint32_t seq_out, uint16_t th_flags, int32_t err, uint32_t cts, in bbr_log_output() argument
5897 if (th_flags & TH_RST) { in bbr_log_output()
5906 if (th_flags & (TH_SYN | TH_FIN) && (hintrsm == NULL)) { in bbr_log_output()
5913 if ((th_flags & TH_SYN) && (tp->iss == seq_out)) in bbr_log_output()
5915 if (th_flags & TH_FIN) in bbr_log_output()
5944 if (th_flags & TH_SYN) in bbr_log_output()
5946 if (th_flags & TH_FIN) in bbr_log_output()
H A Drack.c493 uint32_t seq_out, uint16_t th_flags, int32_t err, uint64_t ts,
8137 uint32_t seq_out, uint16_t th_flags, int32_t err, uint64_t cts, in rack_log_output() argument
8176 if (th_flags & TH_RST) { in rack_log_output()
8186 if (th_flags & (TH_SYN | TH_FIN)) { in rack_log_output()
8193 if ((th_flags & TH_SYN) && (seq_out == tp->iss)) in rack_log_output()
8195 if (th_flags & TH_FIN) in rack_log_output()
8233 if (th_flags & TH_FIN) { in rack_log_output()
8244 if (th_flags & TH_SYN) { in rack_log_output()
/freebsd/sys/netpfil/pf/
H A Dpf.c7461 (th->th_flags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)))) { in pf_tcp_track_full()
7816 if ((th->th_flags & (TH_SYN | TH_ACK)) != TH_SYN) in pf_synproxy_ack()
7893 ((th->th_flags & (TH_SYN | TH_ACK | TH_RST)) == TH_ACK && in pf_test_state()
/freebsd/sys/dev/bce/
H A Dif_bce.c9578 (th->th_off << 2), th->th_flags, in bce_dump_enet()