HomeSort by: relevance | last modified time | path
    Searched defs:nxtsz (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/netinet6/
sctp6_usrreq.c 319 unsigned int nxtsz; local in function:sctp6_notify_mbuf
340 nxtsz = ntohl(icmp6->icmp6_mtu);
345 if (net->mtu > nxtsz) {
346 net->mtu = nxtsz;
349 if (stcb->asoc.smallest_mtu > nxtsz) {
353 stcb->asoc.smallest_mtu = nxtsz;
357 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
362 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
383 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
  /src/sys/netinet/
sctp_usrreq.c 245 uint16_t nxtsz; local in function:sctp_notify_mbuf
273 nxtsz = ntohs(icmph->icmp_seq);
274 if (nxtsz == 0) {
280 nxtsz = find_next_best_mtu(totsz);
287 if (net->mtu > nxtsz) {
288 net->mtu = nxtsz;
291 if (stcb->asoc.smallest_mtu > nxtsz) {
295 stcb->asoc.smallest_mtu = nxtsz;
299 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
304 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
    [all...]

Completed in 13 milliseconds