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

/freebsd-10.1-release/usr.bin/clang/llc/
H A DMakefile5 PROG_CXX=llc
7 SRCDIR= tools/llc
8 SRCS= llc.cpp
/freebsd-10.1-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_NOWAIT);
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-10.1-release/usr.bin/clang/
H A DMakefile10 llc \
/freebsd-10.1-release/sys/net80211/
H A Dieee80211_input.c286 struct llc *llc; local
291 if (m->m_len < hdrlen + sizeof(*llc) &&
292 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
298 llc = (struct llc *)(mtod(m, caddr_t) + hdrlen);
299 if (llc->llc_dsap == LLC_SNAP_LSAP && llc->llc_ssap == LLC_SNAP_LSAP &&
300 llc->llc_control == LLC_UI && llc
351 struct llc *llc; local
[all...]
H A Dieee80211_superg.c249 #define FF_LLC_SIZE (sizeof(struct ether_header) + sizeof(struct llc))
252 struct llc *llc; local
269 "%s", "m_pullup(llc) failed");
273 llc = (struct llc *)(mtod(m, uint8_t *) +
275 if (llc->llc_snap.ether_type != htons(ATH_FF_ETH_TYPE))
344 struct llc *llc; local
361 hdrspace + sizeof(struct llc)
[all...]
H A Dieee80211_output.c1029 #define TO_BE_RECLAIMED (sizeof(struct ether_header) - sizeof(struct llc))
1056 * sizeof(struct ether_header) - sizeof(struct llc)
1161 struct llc *llc; local
1309 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc));
1310 llc = mtod(m, struct llc *);
1311 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
1312 llc
3351 struct llc *llc; local
[all...]
H A Dieee80211_mesh.c1266 struct llc *llc; local
1269 if (m->m_len < hdrlen + sizeof(*llc) &&
1270 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
1283 llc = (struct llc *)(mtod(m, caddr_t) + hdrlen);
1284 if (llc->llc_dsap == LLC_SNAP_LSAP && llc->llc_ssap == LLC_SNAP_LSAP &&
1285 llc->llc_control == LLC_UI && llc
[all...]
/freebsd-10.1-release/sys/net/
H A Dif_fddisubr.c205 * In the phase 2 case, we need to prepend an mbuf for the llc header.
207 * value, we m_copy() the first mbuf, and use it for our llc header.
210 struct llc llc; local
213 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
214 llc.llc_control = LLC_UI;
215 bcopy(at_org_code, llc.llc_snap.org_code, sizeof(at_org_code));
216 llc.llc_snap.ether_type = htons(ETHERTYPE_AT);
217 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_ethersubr.c275 * In the phase 2 case, need to prepend an mbuf for the llc header.
278 struct llc llc; local
284 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
285 llc.llc_control = LLC_UI;
286 bcopy(at_org_code, llc.llc_snap_org_code, sizeof(at_org_code));
287 llc.llc_snap_ether_type = htons( ETHERTYPE_AT );
288 bcopy(&llc, mtod(m, caddr_t), LLC_SNAPFRAMELEN);
729 struct llc *
[all...]
H A Dif_ef.c260 ef_inputSNAP(struct mbuf *m, struct ether_header *eh, struct llc* l,
280 ef_input8022(struct mbuf *m, struct ether_header *eh, struct llc* l,
309 struct llc *l;
316 l = mtod(m, struct llc*);
H A Dif_iso88025subr.c355 * full mac, llc, and source routing function to be controlled.
356 * llc and source routing information must already be in the
380 struct llc *l;
384 l = mtod(m, struct llc *);
452 struct llc *l;
545 l = mtod(m, struct llc *);
664 printf("iso88025_input: unexpected llc control 0x%02x\n", l->llc_control);
H A Dif_bridge.c334 struct ether_header *, int, struct llc *);
3030 struct llc llc1;
3060 struct llc *llc2 = (struct llc *)(eh1 + 1);
3118 m_copydata(*mp, 0, sizeof(struct llc), (caddr_t) &llc1);
3119 m_adj(*mp, sizeof(struct llc));
3243 M_PREPEND(*mp, sizeof(struct llc), M_NOWAIT);
3246 bcopy(&llc1, mtod(*mp, caddr_t), sizeof(struct llc));
3424 int snap, struct llc *llc)
3423 bridge_fragment(struct ifnet *ifp, struct mbuf *m, struct ether_header *eh, int snap, struct llc *llc) argument
[all...]
/freebsd-10.1-release/contrib/ipfilter/lib/
H A Dipft_pc.c17 struct llc { struct
29 static struct llc llcs[] = {
61 static struct llc *llcp = NULL;
212 struct llc *l;
/freebsd-10.1-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-10.1-release/sbin/atm/atmconfig/
H A Datmconfig.help198 of llc/snap (LLC/SNAP encapsulated frames in AAL5) or aal5 (AAL5 frames
/freebsd-10.1-release/usr.sbin/tcpdump/tcpdump/
H A DMakefile75 print-llc.c \
/freebsd-10.1-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-10.1-release/sys/dev/wi/
H A Dif_wi.c959 const struct llc *llc; local
1002 llc = (const struct llc *)(
1004 frmhdr.wi_ehdr.ether_type = llc->llc_snap.ether_type;
/freebsd-10.1-release/sys/dev/ath/
H A Dif_ath_tdma.c229 * the encapsulation done by ieee80211_encap (llc). We also
234 + sizeof(struct llc) \
/freebsd-10.1-release/contrib/libpcap/
H A Dscanner.l290 llc return LLC;
/freebsd-10.1-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

Completed in 177 milliseconds