Home
last modified time | relevance | path

Searched refs:remaining_length (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/netlink/
H A Dnetlink_io.c259 nl_receive_message(struct nlmsghdr *hdr, int remaining_length, in nl_receive_message() argument
269 if (__predict_false(hdr->nlmsg_len > remaining_length)) { in nl_receive_message()
271 hdr->nlmsg_len, remaining_length); in nl_receive_message()
/freebsd/sys/netinet/
H A Dsctp_input.c1065 uint32_t remaining_length, adjust; in sctp_handle_error() local
1072 remaining_length = ntohs(ch->chunk_length); in sctp_handle_error()
1073 if (remaining_length > limit) { in sctp_handle_error()
1074 remaining_length = limit; in sctp_handle_error()
1076 if (remaining_length >= sizeof(struct sctp_chunkhdr)) { in sctp_handle_error()
1077 remaining_length -= sizeof(struct sctp_chunkhdr); in sctp_handle_error()
1079 remaining_length = 0; in sctp_handle_error()
1082 while (remaining_length >= sizeof(struct sctp_error_cause)) { in sctp_handle_error()
1086 if ((cause_length > remaining_length) || (cause_length == 0)) { in sctp_handle_error()
1089 remaining_length, cause_length); in sctp_handle_error()
[all …]