/src/sys/netinet/ |
sctp_asconf.c | 575 struct mbuf *m_ack, *m_result, *m_tail; local in function:sctp_handle_asconf 634 MGETHDR(m_ack, M_DONTWAIT, MT_DATA); 635 if (m_ack == NULL) { 643 m_tail = m_ack; /* current reply chain's tail */ 646 ack_cp = mtod(m_ack, struct sctp_asconf_ack_chunk *); 651 m_ack->m_len = sizeof(struct sctp_asconf_ack_chunk); 653 m_ack->m_pkthdr.len = sizeof(struct sctp_asconf_ack_chunk); 678 ack_aph = (struct sctp_asconf_paramhdr *)(mtod(m_ack, vaddr_t) + sizeof(struct sctp_asconf_ack_chunk)); 692 sctp_m_freem(m_ack); 703 sctp_m_freem(m_ack); [all...] |
sctp_asconf.c | 575 struct mbuf *m_ack, *m_result, *m_tail; local in function:sctp_handle_asconf 634 MGETHDR(m_ack, M_DONTWAIT, MT_DATA); 635 if (m_ack == NULL) { 643 m_tail = m_ack; /* current reply chain's tail */ 646 ack_cp = mtod(m_ack, struct sctp_asconf_ack_chunk *); 651 m_ack->m_len = sizeof(struct sctp_asconf_ack_chunk); 653 m_ack->m_pkthdr.len = sizeof(struct sctp_asconf_ack_chunk); 678 ack_aph = (struct sctp_asconf_paramhdr *)(mtod(m_ack, vaddr_t) + sizeof(struct sctp_asconf_ack_chunk)); 692 sctp_m_freem(m_ack); 703 sctp_m_freem(m_ack); [all...] |
sctp_output.c | 6375 struct mbuf *m_ack; local in function:sctp_send_asconf_ack 6388 m_ack = m_copypacket(stcb->asoc.last_asconf_ack_sent, M_DONTWAIT); 6391 m_ack = m_copym(stcb->asoc.last_asconf_ack_sent, 0, M_COPYALL, M_DONTWAIT); 6393 m_ack = m_copy(stcb->asoc.last_asconf_ack_sent, 0, M_COPYALL); 6395 if (m_ack == NULL) { 6403 sctp_m_freem(m_ack); 6436 chk->data = m_ack; 6437 chk->send_size = m_ack->m_pkthdr.len;
|
sctp_output.c | 6375 struct mbuf *m_ack; local in function:sctp_send_asconf_ack 6388 m_ack = m_copypacket(stcb->asoc.last_asconf_ack_sent, M_DONTWAIT); 6391 m_ack = m_copym(stcb->asoc.last_asconf_ack_sent, 0, M_COPYALL, M_DONTWAIT); 6393 m_ack = m_copy(stcb->asoc.last_asconf_ack_sent, 0, M_COPYALL); 6395 if (m_ack == NULL) { 6403 sctp_m_freem(m_ack); 6436 chk->data = m_ack; 6437 chk->send_size = m_ack->m_pkthdr.len;
|