Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dtcp_syncache.c755 if (ntohl(th_seq) != sc->sc_iss) in syncache_unreach()
913 tp->iss = sc->sc_iss; in syncache_socket()
1264 if (th->th_ack != sc->sc_iss + 1) { in syncache_expand()
1267 "rejected\n", s, __func__, th->th_ack, sc->sc_iss); in syncache_expand()
1717 sc->sc_iss = syncookie_generate(sch, sc); in syncache_add()
1719 sc->sc_iss = arc4random(); in syncache_add()
1723 sc->sc_flowlabel = sc->sc_iss; in syncache_add()
1900 th->th_seq = htonl(sc->sc_iss); in syncache_respond()
1902 th->th_seq = htonl(sc->sc_iss + 1); in syncache_respond()
2293 sc->sc_iss = ack; in syncookie_lookup()
[all …]
H A Dtcp_syncache.h61 tcp_seq sc_iss; /* our ISS */ member