diff options
| author | Kip Macy <kmacy@FreeBSD.org> | 2008-05-05 20:13:31 +0000 | 
|---|---|---|
| committer | Kip Macy <kmacy@FreeBSD.org> | 2008-05-05 20:13:31 +0000 | 
| commit | 535fbad68f67bd603548cc82077cda9bbacc6fcd (patch) | |
| tree | ca3e1ddd4cc2a447b3fba4d0feb5b23411a928c3 /sys/netinet/tcp_usrreq.c | |
| parent | c8c7ad926034489fc405989ac11eabc233af0891 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
| -rw-r--r-- | sys/netinet/tcp_usrreq.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 6a68337aa363..b57f25c7a430 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1229,8 +1229,14 @@ tcp_fill_info(struct tcpcb *tp, struct tcp_info *ti)  	 * FreeBSD-specific extension fields for tcp_info.  	 */  	ti->tcpi_rcv_space = tp->rcv_wnd; +	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;  }  /*  | 
