Symbol: sctp_data_chunk
sys/netinet/sctp_header.h
537
#define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
sys/netinet/sctp_header.h
543
#define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
sys/netinet/sctp_header.h
551
#define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
sys/netinet/sctp_header.h
557
#define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
sys/netinet/sctp_header.h
567
#define SCTP_MED_V4_OVERHEAD (sizeof(struct sctp_data_chunk) + \
sys/netinet/sctp_indata.c
1717
struct sctp_data_chunk *chunk, chunk_buf;
sys/netinet/sctp_indata.c
1719
chunk = (struct sctp_data_chunk *)sctp_m_getptr(*m, offset,
sys/netinet/sctp_indata.c
1720
sizeof(struct sctp_data_chunk), (uint8_t *)&chunk_buf);
sys/netinet/sctp_indata.c
1722
clen = sizeof(struct sctp_data_chunk);
sys/netinet/sctp_indata.c
2015
the_len = (chk_length - sizeof(struct sctp_data_chunk));
sys/netinet/sctp_indata.c
2024
(offset + sizeof(struct sctp_data_chunk)),
sys/netinet/sctp_indata.c
2041
m_adj(dmbuf, (offset + sizeof(struct sctp_data_chunk)));
sys/netinet/sctp_indata.c
2746
clen = sizeof(struct sctp_data_chunk);
sys/netinet/sctp_input.c
4133
struct sctp_data_chunk *data_chunk;
sys/netinet/sctp_input.c
4184
if (chk_len <= sizeof(struct sctp_data_chunk)) {
sys/netinet/sctp_input.c
4188
if (chk_len < sizeof(struct sctp_data_chunk) + SCTP_NUM_DB_TO_VERIFY) {
sys/netinet/sctp_input.c
4196
if (offset + sizeof(struct sctp_data_chunk) + SCTP_NUM_DB_TO_VERIFY > limit) {
sys/netinet/sctp_input.c
4200
data_chunk = (struct sctp_data_chunk *)(cp->data + offset);
sys/netinet/sctp_output.c
6307
overhead += sizeof(struct sctp_data_chunk);
sys/netinet/sctp_output.c
7240
struct sctp_data_chunk *dchkh = NULL;
sys/netinet/sctp_output.c
7596
dchkh = mtod(chk->data, struct sctp_data_chunk *);
sys/netinet/sctp_output.c
8688
struct sctp_data_chunk *dchkh;
sys/netinet/sctp_output.c
8690
dchkh = mtod(chk->data, struct sctp_data_chunk *);
sys/netinet/sctp_output.h
131
sizeof(struct sctp_data_chunk))
sys/netinet/sctputil.c
3404
chkhdr_len = sizeof(struct sctp_data_chunk);