Lines Matching refs:thflags
635 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()
799 ((thflags & TH_RST) && (tcp_log_enable_flags & TLEF_THF_RST)))) { in should_log_th_flags()
815 uint8_t thflags; in tcp_log_th_flags() local
821 thflags = th->th_flags; in tcp_log_th_flags()
823 if (should_log_th_flags(thflags, tp, outgoing, ifp) == false) { in tcp_log_th_flags()
884 uint8_t thflags; in tcp_log_drop_pkt() local
893 thflags = th->th_flags; in tcp_log_drop_pkt()
895 if (should_log_th_flags(thflags, NULL, outgoing, ifp) == false) { in tcp_log_drop_pkt()