Lines Matching defs:overhead
6293 uint32_t frag_point, overhead;
6298 overhead = SCTP_MIN_OVERHEAD;
6300 overhead = SCTP_MIN_V4_OVERHEAD;
6304 overhead += sizeof(struct sctp_idata_chunk);
6306 overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
6309 overhead += sizeof(struct sctp_data_chunk);
6311 overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
6314 KASSERT(overhead % 4 == 0,
6315 ("overhead (%u) not a multiple of 4", overhead));
6318 overhead += (asoc->smallest_mtu % 4);
6320 KASSERT(asoc->smallest_mtu > overhead,
6321 ("Association MTU (%u) too small for overhead (%u)",
6322 asoc->smallest_mtu, overhead));
6323 frag_point = asoc->smallest_mtu - overhead;
10510 * overhead. So for now... not!
11641 * Len is already adjusted to size minus overhead above take