Home
last modified time | relevance | path

Searched refs:atmllc (Results 1 – 8 of 8) sorted by relevance

/freebsd-10-stable/sys/netgraph/
Dng_atmllc.c46 #define NG_ATMLLC_HEADER_LEN (sizeof(struct atmllc))
76 NETGRAPH_INIT(atmllc, &ng_atmllc_typestruct);
150 struct atmllc *hdr; in ng_atmllc_rcvdata()
162 hdr = mtod(m, struct atmllc *); in ng_atmllc_rcvdata()
170 if (m->m_len < sizeof(struct atmllc) + ETHER_HDR_LEN) { in ng_atmllc_rcvdata()
171 m = m_pullup(m, sizeof(struct atmllc) + ETHER_HDR_LEN); in ng_atmllc_rcvdata()
179 hdr = mtod(m, struct atmllc *); in ng_atmllc_rcvdata()
202 m_adj(m, sizeof(struct atmllc) + padding); in ng_atmllc_rcvdata()
211 hdr = mtod(m, struct atmllc *); in ng_atmllc_rcvdata()
212 bzero((void *)hdr, sizeof(struct atmllc) + 2); in ng_atmllc_rcvdata()
[all …]
/freebsd-10-stable/sys/net/
Dif_atmsubr.c131 struct atmllc *atmllc; in atm_output() local
132 const struct atmllc *llc_hdr = NULL; in atm_output()
176 llc_hdr = (const struct atmllc *)(dst->sa_data + in atm_output()
199 atmllc = (struct atmllc *)(ad + 1); in atm_output()
201 bcopy(ATMLLC_HDR, atmllc->llchdr, in atm_output()
202 sizeof(atmllc->llchdr)); in atm_output()
204 ATM_LLC_SETTYPE(atmllc, etype); in atm_output()
207 bcopy(llc_hdr, atmllc, sizeof(struct atmllc)); in atm_output()
294 struct atmllc *alc; in atm_input()
299 alc = mtod(m, struct atmllc *); in atm_input()
Dif_atm.h246 struct atmllc { struct
/freebsd-10-stable/sys/modules/netgraph/
DMakefile8 atmllc \
/freebsd-10-stable/sys/dev/patm/
Dif_patm_attach.c438 bpfattach(ifp, DLT_ATM_RFC1483, sizeof(struct atmllc)); in patm_attach()
/freebsd-10-stable/sys/dev/hatm/
Dif_hatm.c1952 bpfattach(ifp, DLT_ATM_RFC1483, sizeof(struct atmllc)); in hatm_attach()
/freebsd-10-stable/sys/dev/fatm/
Dif_fatm.c3040 bpfattach(ifp, DLT_ATM_RFC1483, sizeof(struct atmllc)); in fatm_attach()
/freebsd-10-stable/sys/dev/en/
Dmidway.c3027 bpfattach(ifp, DLT_ATM_RFC1483, sizeof(struct atmllc)); in en_attach()