HomeSort by: relevance | last modified time | path
    Searched defs:tsn (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/lib/libc/sys/
t_nanosleep.c 62 struct timespec ts1, ts2, tsn; local in function:ATF_TC_BODY
67 tsn.tv_sec = 0;
68 tsn.tv_nsec = i;
74 ATF_REQUIRE(nanosleep(&tsn, NULL) == 0);
86 (unsigned long long)tsn.tv_sec, tsn.tv_nsec,
91 "(resolution = %lu nsec)", tsn.tv_nsec);
134 struct timespec tsn, tsr; local in function:ATF_TC_BODY
151 tsn.tv_sec = 10;
152 tsn.tv_nsec = 0
    [all...]
  /src/sys/netinet/
sctp_header.h 132 u_int32_t tsn; member in struct:sctp_data
154 u_int32_t initial_tsn; /* I-TSN */
234 u_int32_t cum_tsn_ack; /* cumulative TSN Ack */
308 u_int32_t tsn; member in struct:sctp_ecne_chunk
314 u_int32_t tsn; member in struct:sctp_cwr_chunk
361 /* Forward Cumulative TSN (FORWARD TSN) */
418 u_int32_t reset_at_tsn; /* resetters next TSN to be assigned send wise */
sctp_indata.c 180 sctp_build_ctl_nchunk(struct sctp_tcb *stcb, uint32_t tsn, uint32_t ppid,
213 outinfo->sinfo_tsn = tsn;
508 * 2) run out of sequential TSN's
812 * without a TSN wrap for ordered delivery (maybe).
949 * should compare to TSN somehow...
1006 u_int32_t tsn; local in function:sctp_is_all_msg_on_reasm
1018 tsn = chk->rec.data.TSN_seq;
1020 if (tsn != chk->rec.data.TSN_seq) {
1027 tsn++;
1213 * to TSN somehow... sigh for now just blow away th
1672 u_int32_t tsn, gap; local in function:sctp_process_a_data_chunk
    [all...]
sctp_pcb.c 4494 u_int32_t cumulative_tsn_p1, tsn; local in function:sctp_drain_mbufs
4510 tsn = chk->rec.data.TSN_seq;
4511 if (tsn >= asoc->mapping_array_base_tsn) {
4512 gap = tsn - asoc->mapping_array_base_tsn;
4515 tsn + 1;
4541 tsn = chk->rec.data.TSN_seq;
4542 if (tsn >= asoc->mapping_array_base_tsn) {
4543 gap = tsn -
4548 tsn + 1;
4593 * Another issue, in un-setting the TSN's in the mapping array w
    [all...]
sctp_input.c 229 /* init tsn's */
666 * caused the problem. There are two possiblities ASCONF or FWD-TSN
2224 u_int32_t tsn; local in function:sctp_handle_ecn_echo
2229 tsn = ntohl(cp->tsn);
2245 if (lchk->rec.data.TSN_seq == tsn) {
2249 if (compare_with_wrap(lchk->rec.data.TSN_seq, tsn, MAX_SEQ))
2257 if (compare_with_wrap(tsn, stcb->asoc.last_cwr_tsn, MAX_TSN)) {
2285 sctp_send_cwr(stcb, net, tsn);
2302 /* Look for and remove if it is the right TSN. Sinc
2378 u_int32_t tsn; local in function:process_chunk_drop
2674 uint32_t seq, tsn; local in function:sctp_handle_stream_reset_response
    [all...]
sctp_uio.h 514 u_int32_t tsn; member in struct:sctp_fr_log
sctp_output.c 3598 /* get a TSN to use too */
5102 /* assign TSN */
5112 dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
5270 * LAST to the out queue in one pass) and assigning TSN's
5358 * assign TSN's as appropriate.
5794 * Must be sent in order of the TSN's
6463 * For data chunks we will pick out the lowest TSN's in the
6577 /* Clean up the fwd-tsn list */
6583 * that and a fwd-tsn with it all.
6620 uint32_t tsn; local in function:sctp_chunk_retransmission
    [all...]

Completed in 22 milliseconds