Searched refs:bytes_to_send (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libnsl/nsl/ |
H A D | t_snd.c | 57 unsigned int bytes_sent, bytes_remaining, bytes_to_send; local 174 bytes_to_send = bytes_remaining; 181 if (bytes_to_send > (unsigned int)tiptr->ti_maxpsz) { 183 bytes_to_send = (unsigned int)tiptr->ti_maxpsz; 190 databuf.maxlen = bytes_to_send; 191 databuf.len = bytes_to_send; 195 bytes_sent = bytes_to_send; 203 retval = write(fd, curptr, bytes_to_send);
|
H A D | t_sndv.c | 53 unsigned int bytes_sent, bytes_remaining, bytes_to_send, nbytes; local 198 bytes_to_send = bytes_remaining; 205 if (bytes_to_send > (unsigned int)tiptr->ti_maxpsz) { 207 bytes_to_send = (unsigned int)tiptr->ti_maxpsz; 214 databuf.maxlen = bytes_to_send; 215 databuf.len = bytes_to_send; 219 bytes_sent = bytes_to_send;
|
/illumos-gate/usr/src/uts/common/inet/sctp/ |
H A D | sctp_output.c | 315 * Return after appending as many bytes as required (bytes_to_send). 320 sctp_chunkify(sctp_t *sctp, int mss, int firstseg_len, int bytes_to_send) argument 499 bytes_to_send -= (chunksize - count); 522 if (bytes_to_send > 0 && sctp->sctp_xmit_unsent != NULL) {
|
Completed in 73 milliseconds