Searched refs:aph (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/sys/netinet/
H A Dsctp_asconf.c80 struct sctp_asconf_paramhdr *aph; local
89 aph = mtod(m_reply, struct sctp_asconf_paramhdr *);
90 aph->correlation_id = id;
91 aph->ph.param_type = htons(SCTP_SUCCESS_REPORT);
92 aph->ph.param_length = sizeof(struct sctp_asconf_paramhdr);
93 SCTP_BUF_LEN(m_reply) = aph->ph.param_length;
94 aph->ph.param_length = htons(aph->ph.param_length);
104 struct sctp_asconf_paramhdr *aph; local
132 aph
151 sctp_process_asconf_add_ip(struct sockaddr *src, struct sctp_asconf_paramhdr *aph, struct sctp_tcb *stcb, int send_hb, int response_required) argument
311 sctp_process_asconf_delete_ip(struct sockaddr *src, struct sctp_asconf_paramhdr *aph, struct sctp_tcb *stcb, int response_required) argument
449 sctp_process_asconf_set_primary(struct sockaddr *src, struct sctp_asconf_paramhdr *aph, struct sctp_tcb *stcb, int response_required) argument
616 struct sctp_asconf_paramhdr *aph; local
1573 sctp_asconf_process_error(struct sctp_tcb *stcb SCTP_UNUSED, struct sctp_asconf_paramhdr *aph) argument
1679 struct sctp_asconf_paramhdr *aph; local
2361 struct sctp_asconf_paramhdr *aph; local
2587 struct sctp_asconf_paramhdr *aph; local
[all...]
H A Dsctp_header.h114 struct sctp_asconf_paramhdr aph; /* asconf "parameter" */ member in struct:sctp_asconf_addr_param
120 struct sctp_asconf_paramhdr aph; /* asconf "parameter" */ member in struct:sctp_asconf_tag_param
127 struct sctp_asconf_paramhdr aph; /* asconf "parameter" */ member in struct:sctp_asconf_addrv4_param
/freebsd-11-stable/sys/netnatm/
H A Dnatm.c278 struct atm_pseudohdr *aph; local
296 M_PREPEND(m, sizeof(*aph), M_NOWAIT);
302 aph = mtod(m, struct atm_pseudohdr *);
303 ATM_PH_VPI(aph) = npcb->npcb_vpi;
304 ATM_PH_SETVCI(aph, npcb->npcb_vci);
305 ATM_PH_FLAGS(aph) = (proto == PROTO_NATMAAL5) ? ATM_PH_AAL5 : 0;
/freebsd-11-stable/sys/dev/patm/
H A Dif_patm_rx.c199 struct atm_pseudohdr aph; local
322 ATM_PH_FLAGS(&aph) = vcc->vcc.flags & 0xff;
323 ATM_PH_VPI(&aph) = IDT_RSQE_VPI(cid);
324 ATM_PH_SETVCI(&aph, IDT_RSQE_VCI(cid));
333 atm_input(sc->ifp, &aph, m, vcc->rxhand);
437 struct atm_pseudohdr aph; local
521 ATM_PH_FLAGS(&aph) = vcc->vcc.flags & 0xff;
522 ATM_PH_VPI(&aph) = vcc->vcc.vpi;
523 ATM_PH_SETVCI(&aph, vcc->vcc.vci);
525 atm_input(sc->ifp, &aph,
[all...]
H A Dif_patm_tx.c288 struct atm_pseudohdr *aph; local
305 if (m->m_len < sizeof(*aph) &&
306 (m = m_pullup(m, sizeof(*aph))) == NULL) {
311 aph = mtod(m, struct atm_pseudohdr *);
312 vci = ATM_PH_VCI(aph);
313 vpi = ATM_PH_VPI(aph);
314 m_adj(m, sizeof(*aph));
/freebsd-11-stable/sys/dev/hatm/
H A Dif_hatm_rx.c86 struct atm_pseudohdr aph; local
239 ATM_PH_FLAGS(&aph) = vcc->param.flags & 0xff;
240 ATM_PH_VPI(&aph) = vpi;
241 ATM_PH_SETVCI(&aph, vci);
264 atm_input(sc->ifp, &aph, m, vcc->rxhand);
H A Dif_hatm_tx.c357 struct atm_pseudohdr *aph; local
376 if (m->m_len < sizeof(*aph))
377 if ((m = m_pullup(m, sizeof(*aph))) == NULL) {
382 aph = mtod(m, struct atm_pseudohdr *);
383 arg.vci = ATM_PH_VCI(aph);
384 arg.vpi = ATM_PH_VPI(aph);
385 m_adj(m, sizeof(*aph));
/freebsd-11-stable/sys/netgraph/atm/
H A Dng_atm.c491 struct atm_pseudohdr *aph; local
505 M_PREPEND(m, sizeof(*aph), M_NOWAIT);
510 aph = mtod(m, struct atm_pseudohdr *);
511 ATM_PH_VPI(aph) = vcc->vpi;
512 ATM_PH_SETVCI(aph, vcc->vci);
513 ATM_PH_FLAGS(aph) = 0;
/freebsd-11-stable/sys/dev/fatm/
H A Dif_fatm.c1486 struct atm_pseudohdr aph; local
1562 ATM_PH_FLAGS(&aph) = vc->param.flags;
1563 ATM_PH_VPI(&aph) = vpi;
1564 ATM_PH_SETVCI(&aph, vci);
1572 atm_input(ifp, &aph, m0, vc->rxhand);
2040 struct atm_pseudohdr aph; local
2068 aph = *mtod(m, struct atm_pseudohdr *);
2081 vci = ATM_PH_VCI(&aph);
2082 vpi = ATM_PH_VPI(&aph);

Completed in 113 milliseconds