Searched defs:unsent (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_cookie.c1105 uint32_t unsent = 0; local
1111 unsent += smh->smh_msglen;
1128 if (unsent > 0) {
1129 ASSERT(sctp->sctp_unsent >= unsent);
1130 sctp->sctp_unsent -= unsent;
1133 * sent-unack'ed + unsent.
1135 * just use unsent instead of sent-unack'ed +
1136 * unsent, since there won't be any sent-unack'ed
H A Dsctp_output.c49 * in the unsent list - unchunked), after it gets to the transmit list, but
52 * the message is being transferred from the unsent list to the transmit list;
56 * out of the unsent list and update sctp_unsent; when a message is deemed
71 * we send a Forward TSN for a message, there may be yet unsent chunks for
284 /* Add it to the unsent list */
317 * unsent message is too big to fit in the segment.
357 * if not, leave it on the unsent list.
397 * sent-unack'ed + unsent.
802 * Gets the next unsent chunk to transmit. Messages that are abandoned are
808 * the unsent lis
1470 uint32_t unsent = 0; local
[all...]
H A Dsctp_input.c70 * unsent chunk for a message this now abandoned we need to check if a
1965 int32_t unsent = 0; local
2012 unsent += ntohs(dh->sdh_len) - sizeof (*dh);
2015 ASSERT(sctp->sctp_unsent >= unsent);
2016 sctp->sctp_unsent -= unsent;
2019 * sent-unack'ed + unsent.
2134 * sent-unack'ed + unsent.
2524 * hit an unsent chunk or encountered an unordered gap
2579 * mp can't be unsent because of the sanity check
2631 * Likewise, we can hit an unsent chun
[all...]
/illumos-gate/usr/src/uts/common/inet/nca/
H A Dnca.h1107 unsent : 1, member in struct:connp_s
1374 uint32_t tcp_unsent; /* # of bytes in hand that are unsent */
1376 uint32_t tcp_xmit_tail_unsent; /* # of unsent bytes in xmit_tail */

Completed in 78 milliseconds