diff options
| -rw-r--r-- | sys/netinet/tcp_syncache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_syncache.c b/sys/netinet/tcp_syncache.c index 798c379079a2..ba13efabaa90 100644 --- a/sys/netinet/tcp_syncache.c +++ b/sys/netinet/tcp_syncache.c @@ -931,6 +931,8 @@ syncache_add(inc, to, th, sop, m) sc->sc_route.ro_rt = NULL; } sc->sc_irs = th->th_seq; + sc->sc_flags = 0; + sc->sc_peer_mss = to->to_flags & TOF_MSS ? to->to_mss : 0; if (tcp_syncookies) sc->sc_iss = syncookie_generate(sc); else @@ -942,8 +944,6 @@ syncache_add(inc, to, th, sop, m) win = imin(win, TCP_MAXWIN); sc->sc_wnd = win; - sc->sc_flags = 0; - sc->sc_peer_mss = to->to_flags & TOF_MSS ? to->to_mss : 0; if (tcp_do_rfc1323) { /* * A timestamp received in a SYN makes |
