Home
last modified time | relevance | path

Searched refs:sctp_data_chunk (Results 1 – 6 of 6) sorted by relevance

/freebsd-14-stable/sys/netinet/
HDsctp_header.h143 struct sctp_data_chunk { struct
537 #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
543 #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
551 #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
557 #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
567 #define SCTP_MED_V4_OVERHEAD (sizeof(struct sctp_data_chunk) + \
HDsctp_output.h131 sizeof(struct sctp_data_chunk))
HDsctp_indata.c1717 struct sctp_data_chunk *chunk, chunk_buf; in sctp_process_a_data_chunk()
1719 chunk = (struct sctp_data_chunk *)sctp_m_getptr(*m, offset, in sctp_process_a_data_chunk()
1720 sizeof(struct sctp_data_chunk), (uint8_t *)&chunk_buf); in sctp_process_a_data_chunk()
1722 clen = sizeof(struct sctp_data_chunk); in sctp_process_a_data_chunk()
2015 the_len = (chk_length - sizeof(struct sctp_data_chunk)); in sctp_process_a_data_chunk()
2024 (offset + sizeof(struct sctp_data_chunk)), in sctp_process_a_data_chunk()
2041 m_adj(dmbuf, (offset + sizeof(struct sctp_data_chunk))); in sctp_process_a_data_chunk()
2746 clen = sizeof(struct sctp_data_chunk); in sctp_process_data()
HDsctp_input.c4133 struct sctp_data_chunk *data_chunk; in sctp_handle_packet_dropped()
4184 if (chk_len <= sizeof(struct sctp_data_chunk)) { in sctp_handle_packet_dropped()
4188 if (chk_len < sizeof(struct sctp_data_chunk) + SCTP_NUM_DB_TO_VERIFY) { in sctp_handle_packet_dropped()
4196 if (offset + sizeof(struct sctp_data_chunk) + SCTP_NUM_DB_TO_VERIFY > limit) { in sctp_handle_packet_dropped()
4200 data_chunk = (struct sctp_data_chunk *)(cp->data + offset); in sctp_handle_packet_dropped()
HDsctp_output.c6309 overhead += sizeof(struct sctp_data_chunk); in sctp_get_frag_point()
7242 struct sctp_data_chunk *dchkh = NULL; in sctp_move_to_outqueue()
7598 dchkh = mtod(chk->data, struct sctp_data_chunk *); in sctp_move_to_outqueue()
8690 struct sctp_data_chunk *dchkh; in sctp_med_chunk_output()
8692 dchkh = mtod(chk->data, struct sctp_data_chunk *); in sctp_med_chunk_output()
HDsctputil.c3404 chkhdr_len = sizeof(struct sctp_data_chunk); in sctp_notify_send_failed()