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

/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_asconf.c602 struct mbuf *n, *m_ack, *m_result, *m_tail; local
660 m_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_asconf_ack_chunk), 0,
662 if (m_ack == NULL) {
667 m_tail = m_ack; /* current reply chain's tail */
670 ack_cp = mtod(m_ack, struct sctp_asconf_ack_chunk *);
675 SCTP_BUF_LEN(m_ack) = sizeof(struct sctp_asconf_ack_chunk);
691 ack_aph = (struct sctp_asconf_paramhdr *)(mtod(m_ack, caddr_t) + sizeof(struct sctp_asconf_ack_chunk));
711 sctp_m_freem(m_ack);
718 sctp_m_freem(m_ack);
723 sctp_m_freem(m_ack);
[all...]
H A Dsctp_output.c9748 struct mbuf *m_ack; local
9793 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9794 if (m_ack == NULL) {
9802 for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) {
9813 if (m_ack)
9814 sctp_m_freem(m_ack);
9823 chk->data = m_ack;

Completed in 125 milliseconds