Lines Matching defs:t_flags
233 u_int t_flags;
404 #define TCP_ECN_ALLOWED(tp) (tp->t_flags & TF_ECN_PERMIT)
409 #define TCP_SACK_ENABLED(tp) (tp->t_flags & TF_WILL_SACK)
433 if (tp->t_flags & TF_REASSEMBLING) {
437 tp->t_flags |= TF_REASSEMBLING;
448 KASSERT((tp->t_flags & TF_REASSEMBLING) != 0);
449 tp->t_flags &= ~TF_REASSEMBLING;
464 if (((tp)->t_flags & TF_REASSEMBLING) == 0) { \
491 if (((tp)->t_flags & TF_DELACK) == 0) { \
492 (tp)->t_flags |= TF_DELACK; \
499 if ((tp)->t_flags & TF_DELACK) { \
500 (tp)->t_flags &= ~TF_DELACK; \