Searched defs:ctsn (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_shutdown.c54 uint32_t *ctsn; local
100 smp = allocb(sizeof (*sch) + sizeof (*ctsn), BPRI_MED);
108 smp->b_wptr = smp->b_rptr + sizeof (*sch) + sizeof (*ctsn);
111 sizeof (*sch) + sizeof (*ctsn));
117 sendmp->b_wptr += sizeof (*sch) + sizeof (*ctsn);
125 sch->sch_len = htons(sizeof (*sch) + sizeof (*ctsn));
127 ctsn = (uint32_t *)(sch + 1);
128 *ctsn = htonl(sctp->sctp_lastacked);
H A Dsctp_input.c2495 sctp_process_uo_gaps(sctp_t *sctp, uint32_t ctsn, sctp_sack_frag_t *ssf, argument
2516 gstart = ctsn;
2525 * block start from the ctsn again.
2528 SEQ_LT(ctsn + ntohs(ssf->ssf_start), xtsn)) {
2536 gapstart = ctsn + ntohs(ssf->ssf_start);
2537 gapend = ctsn + ntohs(ssf->ssf_end);
2551 SEQ_LEQ(gapstart, ctsn)) {

Completed in 50 milliseconds