Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet/
H A Dsctp_header.h146 struct sctp_data_chunk { struct
532 #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
538 #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
546 #define SCTP_MAX_OVERHEAD (sizeof(struct sctp_data_chunk) + \
552 #define SCTP_MED_OVERHEAD (sizeof(struct sctp_data_chunk) + \
562 #define SCTP_MED_V4_OVERHEAD (sizeof(struct sctp_data_chunk) + \
H A Dsctp_output.h132 sizeof(struct sctp_data_chunk))
H A Dsctp_indata.c1730 struct sctp_data_chunk *chunk, chunk_buf; in sctp_process_a_data_chunk()
1732 chunk = (struct sctp_data_chunk *)sctp_m_getptr(*m, offset, in sctp_process_a_data_chunk()
1733 sizeof(struct sctp_data_chunk), (uint8_t *)&chunk_buf); in sctp_process_a_data_chunk()
1735 clen = sizeof(struct sctp_data_chunk); in sctp_process_a_data_chunk()
2027 the_len = (chk_length - sizeof(struct sctp_data_chunk)); in sctp_process_a_data_chunk()
2036 (offset + sizeof(struct sctp_data_chunk)), in sctp_process_a_data_chunk()
2053 m_adj(dmbuf, (offset + sizeof(struct sctp_data_chunk))); in sctp_process_a_data_chunk()
2758 clen = sizeof(struct sctp_data_chunk); in sctp_process_data()
H A Dsctp_input.c4183 struct sctp_data_chunk *data_chunk; in sctp_handle_packet_dropped()
4234 if (chk_len <= sizeof(struct sctp_data_chunk)) { in sctp_handle_packet_dropped()
4238 if (chk_len < sizeof(struct sctp_data_chunk) + SCTP_NUM_DB_TO_VERIFY) { in sctp_handle_packet_dropped()
4246 if (offset + sizeof(struct sctp_data_chunk) + SCTP_NUM_DB_TO_VERIFY > limit) { in sctp_handle_packet_dropped()
4250 data_chunk = (struct sctp_data_chunk *)(cp->data + offset); in sctp_handle_packet_dropped()
H A Dsctp_output.c7138 struct sctp_data_chunk *dchkh = NULL; in sctp_move_to_outqueue()
7547 dchkh = mtod(chk->data, struct sctp_data_chunk *); in sctp_move_to_outqueue()
8630 struct sctp_data_chunk *dchkh; in sctp_med_chunk_output()
8632 dchkh = mtod(chk->data, struct sctp_data_chunk *); in sctp_med_chunk_output()
H A Dsctputil.c3401 chkhdr_len = sizeof(struct sctp_data_chunk); in sctp_notify_send_failed()