Home | History | Annotate | Download | only in net

Lines Matching refs:llc

373 		 * llc header.
376 struct llc llc;
378 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
385 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
386 llc.llc_control = LLC_UI;
387 memcpy(llc.llc_snap_org_code, at_org_code,
388 sizeof(llc.llc_snap_org_code));
389 llc.llc_snap_ether_type = htons(ETHERTYPE_ATALK);
390 memcpy(mtod(m, void *), &llc, sizeof(struct llc));
514 * is indeed contiguous, then to read the LLC and so on.
533 /* LLC/SNAP */
534 struct llc *llc = (struct llc *)(eh + 1);
538 llc->llc_dsap != LLC_SNAP_LSAP ||
539 llc->llc_ssap != LLC_SNAP_LSAP ||
540 llc->llc_control != LLC_UI) {
545 ether_type = htons(llc->llc_un.type_snap.ether_type);
609 #if defined (LLC) || defined (NETATALK)
614 struct llc *l;
616 if (m->m_len < sizeof(*eh) + sizeof(struct llc))
619 l = (struct llc *)(eh+1);
634 + sizeof(struct llc));
644 + sizeof(struct llc));
673 #endif /* defined (LLC) || defined (NETATALK) */
917 #if defined (LLC) || defined (NETATALK)