Searched refs:snd_size (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c4821 uint32_t snd_size = tcp->tcp_snxt - tcp->tcp_suna; local
4824 if (snd_size > mss)
4825 snd_size = mss;
4826 if (snd_size > tcp->tcp_swnd)
4827 snd_size = tcp->tcp_swnd;
4828 mp1 = tcp_xmit_mp(tcp, tcp->tcp_xmit_head, snd_size,
4829 NULL, NULL, tcp->tcp_suna, B_TRUE, &snd_size,
4838 snd_size);
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c4133 uint32_t snd_size = tcp->tcp_snxt - tcp->tcp_suna; local
4135 if (snd_size > mss)
4136 snd_size = mss;
4137 if (snd_size > tcp->tcp_swnd)
4138 snd_size = tcp->tcp_swnd;
4139 mp1 = tcp_xmit_mp(tcp, tcp->tcp_xmit_head, snd_size,
4140 NULL, NULL, tcp->tcp_suna, B_TRUE, &snd_size,
4149 UPDATE_MIB(tcp_mib.tcpRetransBytes, snd_size);

Completed in 65 milliseconds