Searched refs:thflags (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215.81.4/bsd/netinet/ |
| H A D | tcp_log.c | 687 uint8_t thflags; in tcp_log_pkt_addresses() local 690 thflags = th->th_flags; in tcp_log_pkt_addresses() 837 thflags & TH_SYN ? "SYN " : "", \ 838 thflags & TH_FIN ? "FIN " : "", \ 839 thflags & TH_RST ? "RST " : "", \ 840 thflags & TH_ACK ? "ACK " : "" 843 should_log_th_flags(uint8_t thflags, struct tcpcb *tp, bool outgoing, struct ifnet *ifp) in should_log_th_flags() argument 860 ((thflags & TH_SYN) && (tcp_log_enable_flags & TLEF_SYN_RXMT) && in should_log_th_flags() 867 if ((((thflags & TH_SYN) && (tcp_log_enable_flags & TLEF_THF_SYN)) || in should_log_th_flags() 868 ((thflags & TH_FIN) && (tcp_log_enable_flags & TLEF_THF_FIN)) || in should_log_th_flags() [all …]
|
| H A D | tcp_input.c | 285 static inline int tcp_stretch_ack_enable(struct tcpcb *tp, int thflags); 1246 tcp_stretch_ack_enable(struct tcpcb *tp, int thflags) in tcp_stretch_ack_enable() argument 1264 if (thflags & ~TH_ACK) { in tcp_stretch_ack_enable() 1721 tcp_update_window(struct tcpcb *tp, int thflags, struct tcphdr * th, in tcp_update_window() argument 1725 if ((thflags & TH_ACK) && in tcp_update_window() 2025 int thflags; in tcp_input() local 2223 thflags = th->th_flags; in tcp_input() 2231 if ((thflags & (TH_SYN | TH_FIN)) == (TH_SYN | TH_FIN)) { in tcp_input() 2323 if (thflags & TH_SYN) { in tcp_input() 2335 ntohs(th->th_sport), thflags); in tcp_input() [all …]
|