Home
last modified time | relevance | path

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

/netbsd/src/sys/netinet/
Ddccp_usrreq.c995 if (optval > 0 && optval <= dp->d_maxseg) { in dccp_optsset()
996 dp->d_maxseg = optval; in dccp_optsset()
1029 optval = dp->d_maxseg; in dccp_optsget()
1180 if (pktlen > dp->d_maxseg) { in dccp_output()
1182 DCCP_DEBUG((LOG_INFO, "packet will be fragmented! maxseg %d\n", dp->d_maxseg)); in dccp_output()
1183 len = dp->d_maxseg; in dccp_output()
1298 if (len > (dp->d_maxseg - extrah_len - optlen)) { in dccp_output()
1299 len = dp->d_maxseg - extrah_len - optlen; in dccp_output()
1956 if (m->m_pkthdr.len > dp->d_maxseg) { in dccp_send()
2118 dp->d_maxseg = 1400; in dccp_newdccpcb()
Ddccp_var.h99 u_int32_t d_maxseg; /* Maximum segment size */ member