HomeSort by: relevance | last modified time | path
    Searched refs:sctp_data_chunk (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/netinet/
sctp_header.h 139 struct sctp_data_chunk { struct
450 #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
456 #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
465 #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
471 #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
482 #define SCTP_MED_V4_OVERHEAD (sizeof(struct sctp_data_chunk) + \
sctp_indata.c 1665 struct mbuf **m, int offset, struct sctp_data_chunk *ch, int chk_length,
1870 the_len = (chk_length-sizeof(struct sctp_data_chunk));
1873 (offset + sizeof(struct sctp_data_chunk)),
1879 m_adj(dmbuf, (offset + sizeof(struct sctp_data_chunk)));
2503 struct sctp_data_chunk *ch, chunk_buf;
2566 ch = (struct sctp_data_chunk *)sctp_m_getptr(m, *offset,
2588 if ((size_t)chk_length < sizeof(struct sctp_data_chunk) + 1 ||
2655 ch = (struct sctp_data_chunk *)sctp_m_getptr(m, *offset,
sctp_input.c 2423 sizeof(struct sctp_data_chunk));
2841 if (chlen < (sizeof(struct sctp_data_chunk) +
2856 if (chlen >= (sizeof(struct sctp_data_chunk) + sizeof(u_int32_t)) ) {
2858 struct sctp_data_chunk *dcp;
2861 dcp = (struct sctp_data_chunk *)ch;
sctp_output.c 4106 if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) { */
4108 /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk));*/
4997 struct sctp_data_chunk *dchkh;
5008 M_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_DONTWAIT);
5030 chk->send_size += sizeof(struct sctp_data_chunk);
5034 if (!failed && ((size_t)chk->data->m_len < sizeof(struct sctp_data_chunk))) {
5035 m_pullup(chk->data, sizeof(struct sctp_data_chunk));
5041 dchkh = mtod(chk->data, struct sctp_data_chunk *);
5105 dchkh = mtod(chk->data, struct sctp_data_chunk *);
7448 ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) * sizeof(struct sctp_data_chunk))
    [all...]

Completed in 36 milliseconds