Home | History | Annotate | Download | only in net80211

Lines Matching defs:llc

411 #define	TO_BE_RECLAIMED	(sizeof(struct ether_header) - sizeof(struct llc))
423 * header and prepending an LLC header. This means we know
425 * sizeof(struct ether_header) - sizeof(struct llc)
537 struct llc *llc;
598 m_adj(m, sizeof(struct ether_header) - sizeof(struct llc));
599 llc = mtod(m, struct llc *);
600 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
601 llc->llc_control = LLC_UI;
602 llc->llc_snap.org_code[0] = 0;
603 llc->llc_snap.org_code[1] = 0;
604 llc->llc_snap.org_code[2] = 0;
605 llc->llc_snap.ether_type = eh.ether_type;