Home
last modified time | relevance | path

Searched refs:smallest_mtu (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/netinet/
H A Dsctp_output.c4251 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { in sctp_lowlevel_chunk_output()
4593 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { in sctp_lowlevel_chunk_output()
4600 (stcb->asoc.smallest_mtu > ifp->if_inet6->nd_linkmtu)) { in sctp_lowlevel_chunk_output()
6315 if (asoc->smallest_mtu % 4 > 0) { in sctp_get_frag_point()
6316 overhead += (asoc->smallest_mtu % 4); in sctp_get_frag_point()
6318 KASSERT(asoc->smallest_mtu > overhead, in sctp_get_frag_point()
6320 asoc->smallest_mtu, overhead)); in sctp_get_frag_point()
6321 frag_point = asoc->smallest_mtu - overhead; in sctp_get_frag_point()
6818 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { in sctp_sendall_iterator()
10246 if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) && in sctp_chunk_output()
[all …]
H A Dsctp_structs.h912 uint32_t smallest_mtu; member
H A Dsctp_usrreq.c113 KASSERT(mtu < asoc->smallest_mtu, in sctp_pathmtu_adjustment()
115 asoc->smallest_mtu, mtu)); in sctp_pathmtu_adjustment()
116 asoc->smallest_mtu = mtu; in sctp_pathmtu_adjustment()
246 if (stcb->asoc.smallest_mtu > next_mtu) { in sctp_notify()
5360 if (net->mtu < stcb->asoc.smallest_mtu) {
5504 if (net->mtu < stcb->asoc.smallest_mtu) {
H A Dsctp_sysctl.c507 xstcb.mtu = stcb->asoc.smallest_mtu; in sctp_sysctl_handle_assoclist()
H A Dsctp_asconf.c2584 if (stcb->asoc.smallest_mtu <= overhead) { in sctp_compose_asconf()
2629 if ((SCTP_BUF_LEN(m_asconf) + p_length > stcb->asoc.smallest_mtu - overhead) || in sctp_compose_asconf()
H A Dsctp_input.c5329 if (stcb->asoc.smallest_mtu > net->mtu) { in sctp_common_input_processing()
5399 if (stcb->asoc.smallest_mtu > net->mtu) { in sctp_common_input_processing()
5496 if (stcb->asoc.smallest_mtu > net->mtu) { in sctp_common_input_processing()
H A Dsctp_pcb.c3913 stcb->asoc.smallest_mtu = net->mtu; in sctp_add_remote_addr()
3915 if (stcb->asoc.smallest_mtu > net->mtu) { in sctp_add_remote_addr()
H A Dsctputil.c1250 asoc->smallest_mtu = 0; in sctp_init_asoc()
/freebsd/sys/netinet6/
H A Dsctp6_usrreq.c236 if (stcb->asoc.smallest_mtu > next_mtu) { in sctp6_notify()