diff options
| author | Kip Macy <kmacy@FreeBSD.org> | 2008-05-05 23:13:27 +0000 |
|---|---|---|
| committer | Kip Macy <kmacy@FreeBSD.org> | 2008-05-05 23:13:27 +0000 |
| commit | 8ab7ce7c610c77f22385bf0cc504cbc74067aa9c (patch) | |
| tree | cdc531c4c577872fd590b5e9264b2eb4d5afedd0 /sys | |
| parent | 71dba7f30c73ea46a93207607e44beb2140c6904 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/netinet/tcp_usrreq.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index b57f25c7a430..94ce0886e8ba 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1232,11 +1232,11 @@ tcp_fill_info(struct tcpcb *tp, struct tcp_info *ti) ti->tcpi_rcv_nxt = tp->rcv_nxt; ti->tcpi_snd_wnd = tp->snd_wnd; ti->tcpi_snd_bwnd = tp->snd_bwnd; - ti->tcpi_snd_nxt = tp->snd_nxt; - ti->__tcpi_snd_mss = tp->t_maxseg; - ti->__tcpi_rcv_mss = tp->t_maxseg; - if (tp->t_flags & TF_TOE) - ti->tcpi_options |= TCPI_OPT_TOE; + ti->tcpi_snd_nxt = tp->snd_nxt; + ti->__tcpi_snd_mss = tp->t_maxseg; + ti->__tcpi_rcv_mss = tp->t_maxseg; + if (tp->t_flags & TF_TOE) + ti->tcpi_options |= TCPI_OPT_TOE; } /* |
