Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/netinet/
H A Dtcp_log.c620 uint8_t thflags; in tcp_log_pkt_addresses() local
623 thflags = th->th_flags; in tcp_log_pkt_addresses()
750 thflags & TH_SYN ? "SYN " : "", \
751 thflags & TH_FIN ? "FIN " : "", \
752 thflags & TH_RST ? "RST " : "", \
753 thflags & TH_ACK ? "ACK " : "", \
765 uint8_t thflags; in tcp_log_th_flags() local
778 thflags = th->th_flags; in tcp_log_th_flags()
780 if ((((thflags & TH_SYN) && (tcp_log_enable_flags & TLEF_THF_SYN)) || in tcp_log_th_flags()
781 ((thflags & TH_FIN) && (tcp_log_enable_flags & TLEF_THF_FIN)) || in tcp_log_th_flags()
[all …]
H A Dtcp_input.c279 static inline int tcp_stretch_ack_enable(struct tcpcb *tp, int thflags);
1298 tcp_stretch_ack_enable(struct tcpcb *tp, int thflags) in tcp_stretch_ack_enable() argument
1316 if (thflags & ~TH_ACK) { in tcp_stretch_ack_enable()
1785 tcp_update_window(struct tcpcb *tp, int thflags, struct tcphdr * th, in tcp_update_window() argument
1789 if ((thflags & TH_ACK) && in tcp_update_window()
1869 int thflags; in tcp_input() local
2067 thflags = th->th_flags; in tcp_input()
2075 if ((thflags & (TH_SYN | TH_FIN)) == (TH_SYN | TH_FIN)) { in tcp_input()
2166 if (thflags & TH_SYN) { in tcp_input()
2178 ntohs(th->th_sport), thflags); in tcp_input()
[all …]