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