Searched refs:m_ack (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/sys/netinet/
H A Dsctp_asconf.c597 struct mbuf *n, *m_ack, *m_result, *m_tail; local
653 m_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_asconf_ack_chunk), 0,
655 if (m_ack == NULL) {
660 m_tail = m_ack; /* current reply chain's tail */
663 ack_cp = mtod(m_ack, struct sctp_asconf_ack_chunk *);
668 SCTP_BUF_LEN(m_ack) = sizeof(struct sctp_asconf_ack_chunk);
684 ack_aph = (struct sctp_asconf_paramhdr *)(mtod(m_ack, caddr_t)+sizeof(struct sctp_asconf_ack_chunk));
704 sctp_m_freem(m_ack);
711 sctp_m_freem(m_ack);
716 sctp_m_freem(m_ack);
[all...]
H A Dsctp_output.c9147 struct mbuf *m_ack; local
9191 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9192 if (m_ack == NULL) {
9200 for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) {
9211 if (m_ack)
9212 sctp_m_freem(m_ack);
9221 chk->data = m_ack;

Completed in 87 milliseconds