Searched refs:llc (Results 1 - 24 of 24) sorted by relevance

/freebsd-9.3-release/usr.bin/clang/llc/
H A DMakefile5 PROG_CXX=llc
7 SRCDIR= tools/llc
8 SRCS= llc.cpp
/freebsd-9.3-release/sys/netatalk/
H A Daarp.c189 struct llc *llc; local
231 eh->ether_type = htons(sizeof(struct llc) +
233 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
238 llc = mtod(m, struct llc *);
239 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
240 llc->llc_control = LLC_UI;
241 bcopy(aarp_org_code, llc
367 struct llc *llc; local
612 struct llc *llc; local
[all...]
/freebsd-9.3-release/usr.bin/clang/
H A DMakefile9 llc \
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_superg.c247 #define FF_LLC_SIZE (sizeof(struct ether_header) + sizeof(struct llc))
250 struct llc *llc; local
267 "%s", "m_pullup(llc) failed");
271 llc = (struct llc *)(mtod(m, uint8_t *) +
273 if (llc->llc_snap.ether_type != htons(ATH_FF_ETH_TYPE))
341 struct llc *llc; local
345 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc));
379 struct llc *llc; local
[all...]
H A Dieee80211_input.c283 struct llc *llc; local
288 if (m->m_len < hdrlen + sizeof(*llc) &&
289 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
295 llc = (struct llc *)(mtod(m, caddr_t) + hdrlen);
296 if (llc->llc_dsap == LLC_SNAP_LSAP && llc->llc_ssap == LLC_SNAP_LSAP &&
297 llc->llc_control == LLC_UI && llc
348 struct llc *llc; local
[all...]
H A Dieee80211_mesh.c938 struct llc *llc; local
941 if (m->m_len < hdrlen + sizeof(*llc) &&
942 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
955 llc = (struct llc *)(mtod(m, caddr_t) + hdrlen);
956 if (llc->llc_dsap == LLC_SNAP_LSAP && llc->llc_ssap == LLC_SNAP_LSAP &&
957 llc->llc_control == LLC_UI && llc
[all...]
H A Dieee80211_output.c893 #define TO_BE_RECLAIMED (sizeof(struct ether_header) - sizeof(struct llc))
920 * sizeof(struct ether_header) - sizeof(struct llc)
1022 struct llc *llc; local
1147 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc));
1148 llc = mtod(m, struct llc *);
1149 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
1150 llc
[all...]
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dipft_sn.c22 struct llc { struct
32 static struct llc llcs[SDL_MAX+1] = {
162 struct llc *l;
H A Dipft_pc.c19 struct llc { struct
31 static struct llc llcs[] = {
81 static struct llc *llcp = NULL;
236 struct llc *l;
/freebsd-9.3-release/sys/net/
H A Dif_fddisubr.c208 * In the phase 2 case, we need to prepend an mbuf for the llc header.
210 * value, we m_copy() the first mbuf, and use it for our llc header.
213 struct llc llc; local
216 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
217 llc.llc_control = LLC_UI;
218 bcopy(at_org_code, llc.llc_snap.org_code, sizeof(at_org_code));
219 llc.llc_snap.ether_type = htons(ETHERTYPE_AT);
220 bcopy(&llc, mto
[all...]
H A Dif_llc.h46 struct llc { struct
118 CTASSERT(sizeof (struct llc) == LLC_SNAPFRAMELEN);
H A Dif_fwsubr.c741 firewire_ifattach(struct ifnet *ifp, struct fw_hwaddr *llc) argument
751 fc->fc_speed = llc->sspd;
767 bcopy(llc, LLADDR(sdl), ifp->if_addrlen);
773 (uint8_t *) &llc->sender_unique_ID_hi, ":",
774 ntohs(llc->sender_unicast_FIFO_hi),
775 ntohl(llc->sender_unicast_FIFO_lo),
776 speeds[llc->sspd],
777 (2 << llc->sender_max_rec));
H A Dif_ef.c266 ef_inputSNAP(struct mbuf *m, struct ether_header *eh, struct llc* l,
286 ef_input8022(struct mbuf *m, struct ether_header *eh, struct llc* l,
315 struct llc *l;
322 l = mtod(m, struct llc*);
H A Dif_ethersubr.c265 * In the phase 2 case, need to prepend an mbuf for the llc header.
268 struct llc llc; local
274 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
275 llc.llc_control = LLC_UI;
276 bcopy(at_org_code, llc.llc_snap_org_code, sizeof(at_org_code));
277 llc.llc_snap_ether_type = htons( ETHERTYPE_AT );
278 bcopy(&llc, mtod(m, caddr_t), LLC_SNAPFRAMELEN);
816 struct llc *
[all...]
H A Dif_iso88025subr.c358 * full mac, llc, and source routing function to be controlled.
359 * llc and source routing information must already be in the
384 struct llc *l;
388 l = mtod(m, struct llc *);
456 struct llc *l;
550 l = mtod(m, struct llc *);
669 printf("iso88025_input: unexpected llc control 0x%02x\n", l->llc_control);
H A Dif_bridge.c336 struct ether_header *, int, struct llc *);
3037 struct llc llc1;
3067 struct llc *llc2 = (struct llc *)(eh1 + 1);
3115 m_copydata(*mp, 0, sizeof(struct llc), (caddr_t) &llc1);
3116 m_adj(*mp, sizeof(struct llc));
3308 M_PREPEND(*mp, sizeof(struct llc), M_DONTWAIT);
3311 bcopy(&llc1, mtod(*mp, caddr_t), sizeof(struct llc));
3489 int snap, struct llc *llc)
3488 bridge_fragment(struct ifnet *ifp, struct mbuf *m, struct ether_header *eh, int snap, struct llc *llc) argument
[all...]
/freebsd-9.3-release/lib/libutil/
H A Dlogin_class.c428 login_cap_t *llc = NULL; local
435 llc = lc; /* free this when we're done */
477 login_close(llc);
483 login_close(llc);
516 login_close(llc);
535 login_close(llc);
543 login_close(llc);
/freebsd-9.3-release/sbin/atm/atmconfig/
H A Datmconfig.help198 of llc/snap (LLC/SNAP encapsulated frames in AAL5) or aal5 (AAL5 frames
/freebsd-9.3-release/usr.sbin/tcpdump/tcpdump/
H A DMakefile75 print-llc.c \
/freebsd-9.3-release/sys/dev/pdq/
H A Dpdq_ifsubr.c463 pdq_ifattach(pdq_softc_t *sc, const pdq_uint8_t *llc, pdq_type_t type)
503 fddi_ifattach(ifp, llc, FDDI_BPF_SUPPORTED);
457 pdq_ifattach(pdq_softc_t *sc, const pdq_uint8_t *llc, pdq_type_t type) argument
/freebsd-9.3-release/sys/dev/wi/
H A Dif_wi.c957 const struct llc *llc; local
1000 llc = (const struct llc *)(
1002 frmhdr.wi_ehdr.ether_type = llc->llc_snap.ether_type;
/freebsd-9.3-release/contrib/libpcap/
H A Dscanner.l290 llc return LLC;
/freebsd-9.3-release/tools/tools/net80211/wesside/wesside/
H A Dwesside.c769 struct llc* h = (struct llc*) buf;
1314 // ether type should be there from llc
1316 dlen -= 8; // llc
/freebsd-9.3-release/sys/dev/ath/
H A Dif_ath.c5540 * the encapsulation done by ieee80211_encap (llc). We also
5545 + sizeof(struct llc) \

Completed in 311 milliseconds