Home
last modified time | relevance | path

Searched refs:TF_LISTEN (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/netinet/
H A Dtcp_usrreq.c481 if (tp->t_flags & TF_LISTEN) in tcp_usr_listen()
491 tp->t_flags |= TF_LISTEN; in tcp_usr_listen()
531 if (tp->t_flags & TF_LISTEN) in tcp6_usr_listen()
541 tp->t_flags |= TF_LISTEN; in tcp6_usr_listen()
1493 if (tp->t_flags & TF_LISTEN) { in tcp_ctloutput()
H A Dtcp_subr.c825 if (tp->t_flags & TF_LISTEN) { in tcp_listen_detach_handler()
861 if (tp->t_flags & TF_LISTEN) { in tcp_close()
1048 if (tp->t_flags & TF_LISTEN) { in tcp_close()
2394 KASSERT((tp->t_flags & TF_LISTEN) == 0, ("listen socket")); in tcp_drop_sysctl_dispatch()
2508 KASSERT((tp->t_flags & TF_LISTEN) && tp->t_state == TCPS_LISTEN, in tcp_pcbport_create()
H A Dtcp_var.h177 #define TF_LISTEN 0x00002000 /* listen(2) has been called */ macro