Lines Matching refs:lhdr
514 struct ieee80211_llc_snap_header *lhdr = in net80211_ll_push() local
537 lhdr->dsap = IEEE80211_LLC_DSAP; in net80211_ll_push()
538 lhdr->ssap = IEEE80211_LLC_SSAP; in net80211_ll_push()
539 lhdr->ctrl = IEEE80211_LLC_CTRL; in net80211_ll_push()
540 memset ( lhdr->oui, 0x00, 3 ); in net80211_ll_push()
541 lhdr->ethertype = net_proto; in net80211_ll_push()
565 struct ieee80211_llc_snap_header *lhdr = in net80211_ll_pull() local
596 if ( lhdr->dsap != IEEE80211_LLC_DSAP || lhdr->ssap != IEEE80211_LLC_SSAP || in net80211_ll_pull()
597 lhdr->ctrl != IEEE80211_LLC_CTRL || lhdr->oui[0] || lhdr->oui[1] || in net80211_ll_pull()
598 lhdr->oui[2] ) { in net80211_ll_pull()
601 netdev->priv, lhdr->dsap, lhdr->ssap, lhdr->ctrl, in net80211_ll_pull()
602 lhdr->oui[0], lhdr->oui[1], lhdr->oui[2], lhdr->ethertype ); in net80211_ll_pull()
606 iob_pull ( iobuf, sizeof ( *hdr ) + sizeof ( *lhdr ) ); in net80211_ll_pull()
610 *net_proto = lhdr->ethertype; in net80211_ll_pull()