Home
last modified time | relevance | path

Searched refs:thflags (Results 1 – 2 of 2) sorted by relevance

/xnu-8796.141.3/bsd/netinet/
H A Dtcp_log.c635 uint8_t thflags; in tcp_log_pkt_addresses() local
638 thflags = th->th_flags; in tcp_log_pkt_addresses()
766 thflags & TH_SYN ? "SYN " : "", \
767 thflags & TH_FIN ? "FIN " : "", \
768 thflags & TH_RST ? "RST " : "", \
769 thflags & TH_ACK ? "ACK " : "", \
773 should_log_th_flags(uint8_t thflags, struct tcpcb *tp, bool outgoing, struct ifnet *ifp) in should_log_th_flags() argument
790 ((thflags & TH_SYN) && (tcp_log_enable_flags & TLEF_SYN_RXMT) && in should_log_th_flags()
797 if ((((thflags & TH_SYN) && (tcp_log_enable_flags & TLEF_THF_SYN)) || in should_log_th_flags()
798 ((thflags & TH_FIN) && (tcp_log_enable_flags & TLEF_THF_FIN)) || in should_log_th_flags()
[all …]
H A Dtcp_input.c286 static inline int tcp_stretch_ack_enable(struct tcpcb *tp, int thflags);
1297 tcp_stretch_ack_enable(struct tcpcb *tp, int thflags) in tcp_stretch_ack_enable() argument
1315 if (thflags & ~TH_ACK) { in tcp_stretch_ack_enable()
1771 tcp_update_window(struct tcpcb *tp, int thflags, struct tcphdr * th, in tcp_update_window() argument
1775 if ((thflags & TH_ACK) && in tcp_update_window()
1881 int thflags; in tcp_input() local
2079 thflags = th->th_flags; in tcp_input()
2087 if ((thflags & (TH_SYN | TH_FIN)) == (TH_SYN | TH_FIN)) { in tcp_input()
2178 if (thflags & TH_SYN) { in tcp_input()
2190 ntohs(th->th_sport), thflags); in tcp_input()
[all …]