Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_output.c3091 tcp_xmit_mp(tcp_t *tcp, mblk_t *mp, int32_t max_to_send, int32_t *offset, in tcp_xmit_mp() argument
3133 if (max_to_send + opt_len > tcp->tcp_mss) in tcp_xmit_mp()
3134 max_to_send -= opt_len; in tcp_xmit_mp()
3141 for (mp2 = mp1; mp && data_length != max_to_send; mp = mp->b_cont) { in tcp_xmit_mp()
3145 max_to_send) in tcp_xmit_mp()
3162 if (data_length > max_to_send) { in tcp_xmit_mp()
3163 mp2->b_wptr -= data_length - max_to_send; in tcp_xmit_mp()
3164 data_length = max_to_send; in tcp_xmit_mp()
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c5724 tcp_xmit_mp(tcp_t *tcp, mblk_t *mp, int32_t max_to_send, int32_t *offset, in tcp_xmit_mp() argument
5759 if (max_to_send + sack_opt_len > tcp->tcp_mss) in tcp_xmit_mp()
5760 max_to_send -= sack_opt_len; in tcp_xmit_mp()
5768 for (mp2 = mp1; mp && data_length != max_to_send; mp = mp->b_cont) { in tcp_xmit_mp()
5772 max_to_send) in tcp_xmit_mp()
5789 if (data_length > max_to_send) { in tcp_xmit_mp()
5790 mp2->b_wptr -= data_length - max_to_send; in tcp_xmit_mp()
5791 data_length = max_to_send; in tcp_xmit_mp()