Home
last modified time | relevance | path

Searched refs:sc_irs (Results 1 – 2 of 2) sorted by relevance

/trueos/sys/netinet/
HDtcp_syncache.c593 if (SEQ_GEQ(th->th_seq, sc->sc_irs) && in syncache_chkrst()
594 SEQ_LEQ(th->th_seq, sc->sc_irs + sc->sc_wnd)) { in syncache_chkrst()
605 s, __func__, th->th_seq, sc->sc_irs, sc->sc_wnd); in syncache_chkrst()
847 tp->irs = sc->sc_irs; in syncache_socket()
850 tp->snd_wl1 = sc->sc_irs; in syncache_socket()
853 tp->rcv_up = sc->sc_irs + 1; in syncache_socket()
1025 if (SEQ_LEQ(th->th_seq, sc->sc_irs) || in syncache_expand()
1026 SEQ_GT(th->th_seq, sc->sc_irs + sc->sc_wnd)) { in syncache_expand()
1029 "rejected\n", s, __func__, th->th_seq, sc->sc_irs); in syncache_expand()
1279 sc->sc_irs = th->th_seq; in syncache_add()
[all …]
HDtcp_syncache.h61 tcp_seq sc_irs; /* seq from peer */ member