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

  /src/sys/netinet/
sctp_asconf.c 2230 struct mbuf *m_asconf, *m_asconf_chk; local in function:sctp_compose_asconf
2260 m_asconf = NULL;
2261 MGETHDR(m_asconf, M_DONTWAIT, MT_HEADER);
2262 if (m_asconf == NULL) {
2271 MCLGET(m_asconf, M_DONTWAIT);
2272 if ((m_asconf->m_flags & M_EXT) != M_EXT) {
2279 sctp_m_freem(m_asconf);
2284 m_asconf->m_len = 0;
2289 ptr = mtod(m_asconf, vaddr_t); /* beginning of cluster */
2301 if (m_asconf->m_len + p_length > stcb->asoc.smallest_mtu)
    [all...]
sctp_output.c 6337 struct mbuf *m_asconf; local in function:sctp_send_asconf
6340 m_asconf = sctp_compose_asconf(stcb);
6341 if (m_asconf == NULL) {
6347 sctp_m_freem(m_asconf);
6353 chk->data = m_asconf;
6354 chk->send_size = m_asconf->m_pkthdr.len;

Completed in 18 milliseconds