Home
last modified time | relevance | path

Searched refs:INP_TIMEWAIT (Results 1 – 19 of 19) sorted by relevance

/f-stack/freebsd/netinet/
H A Dtcp_usrreq.c235 if (inp->inp_flags & INP_TIMEWAIT) { in tcp_usr_detach()
378 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_usr_bind()
422 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp6_usr_bind()
480 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_usr_listen()
526 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp6_usr_listen()
603 if (inp->inp_flags & INP_TIMEWAIT) { in tcp_usr_connect()
663 if (inp->inp_flags & INP_TIMEWAIT) { in tcp6_usr_connect()
784 if (inp->inp_flags & INP_TIMEWAIT) in tcp_usr_disconnect()
1401 if (!(inp->inp_flags & INP_TIMEWAIT) && in tcp_usr_abort()
1445 if (!(inp->inp_flags & INP_TIMEWAIT) && in tcp_usr_close()
[all …]
H A Dtcp_timer.c351 if ((inp->inp_flags & INP_TIMEWAIT) != 0) { in tcp_timer_2msl()
360 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_timer_2msl()
374 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_timer_2msl()
501 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_timer_keep()
565 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_timer_persist()
582 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_timer_persist()
654 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_timer_rexmt()
H A Dtcp_subr.c1051 if (inp->inp_flags & INP_TIMEWAIT) { in deregister_tcp_functions()
1853 if (!(inp->inp_flags & INP_TIMEWAIT) && in tcp_ccalgounload()
2166 if (inpb->inp_flags & INP_TIMEWAIT) { in tcp_drain()
2208 if ((inp->inp_flags & INP_TIMEWAIT) || in tcp_notify()
2299 if (inp->inp_flags & INP_TIMEWAIT) { in tcp_pcblist()
2507 if (!(inp->inp_flags & INP_TIMEWAIT) && in tcp_ctlinput()
2653 if (!(inp->inp_flags & INP_TIMEWAIT) && in tcp6_ctlinput()
2869 if ((inp->inp_flags & INP_TIMEWAIT) || in tcp_drop_syn_sent()
2908 if ((inp->inp_flags & INP_TIMEWAIT) || in tcp_mtudisc()
3151 if (inp->inp_flags & INP_TIMEWAIT) { in sysctl_drop()
[all …]
H A Dtoecore.c215 if (inp->inp_flags & (INP_DROPPED | INP_TIMEWAIT)) in toe_listen_start()
392 if ((inp->inp_flags & INP_TIMEWAIT) && th != NULL) { in toe_4tuple_check()
H A Dtcp_timewait.c345 inp->inp_flags |= INP_TIMEWAIT; in tcp_twstart()
504 KASSERT((inp->inp_flags & INP_TIMEWAIT), ("tcp_twclose: !timewait")); in tcp_twclose()
H A Dsiftr.c902 if (tp == NULL || inp->inp_flags & INP_TIMEWAIT) { in siftr_chkpkt()
1086 if (tp == NULL || inp->inp_flags & INP_TIMEWAIT) { in siftr_chkpkt6()
H A Dtcp_log_buf.c488 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { \
2039 if ((inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) == 0) { in tcp_log_getlogbuf()
2213 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_log_dump_tp_logbuf()
H A Din_pcb.c1009 ((t->inp_flags & INP_TIMEWAIT) == 0) && in in_pcbbind_setup()
1031 if (t && (t->inp_flags & INP_TIMEWAIT)) { in in_pcbbind_setup()
3222 if (inp_flags & INP_TIMEWAIT) { in db_print_inpflags()
3456 if (*st != NULL || (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) != 0) in in_pcbattach_txrtlmt()
H A Din_pcb.h715 #define INP_TIMEWAIT 0x01000000 /* in TIMEWAIT, ppcb is tcptw */ macro
H A Dtcp_hpts.c1277 if ((inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) || in tcp_input_data()
1546 if ((inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) || in tcp_hptsi()
H A Dtcp_lro.c907 if (inp && ((inp->inp_flags & (INP_DROPPED|INP_TIMEWAIT)) || in tcp_lro_flush()
H A Dtcp_input.c990 if (inp->inp_flags & INP_TIMEWAIT) { in tcp_input()
/f-stack/freebsd/netipsec/
H A Dxform_tcp.c89 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_ipsec_pcbctl()
107 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in tcp_ipsec_pcbctl()
/f-stack/freebsd/netinet6/
H A Din6_pcb.c225 ((t->inp_flags & INP_TIMEWAIT) == 0) && in in6_pcbbind()
257 INP_TIMEWAIT) == 0) && in in6_pcbbind()
272 if (t && (t->inp_flags & INP_TIMEWAIT)) { in in6_pcbbind()
296 if (t && t->inp_flags & INP_TIMEWAIT) { in in6_pcbbind()
H A Dip6_output.c1852 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in ip6_ctloutput()
1998 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in ip6_ctloutput()
2090 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in ip6_ctloutput()
2576 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { \
/f-stack/freebsd/kern/
H A Duipc_ktls.c762 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in ktls_try_toe()
814 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in ktls_alloc_snd_tag()
1359 if (!(inp->inp_flags & INP_TIMEWAIT) && in ktls_reset_send_tag()
/f-stack/tools/compat/include/netinet/
H A Din_pcb.h715 #define INP_TIMEWAIT 0x01000000 /* in TIMEWAIT, ppcb is tcptw */ macro
/f-stack/freebsd/netinet/tcp_stacks/
H A Drack.c14182 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in rack_set_sockopt()
H A Dbbr.c14356 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) { in bbr_set_sockopt()