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

/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_input.c301 struct llc *llc; local
306 if (m->m_len < hdrlen + sizeof(*llc) &&
307 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
313 llc = (struct llc *)(mtod(m, caddr_t) + hdrlen);
314 if (llc->llc_dsap == LLC_SNAP_LSAP && llc->llc_ssap == LLC_SNAP_LSAP &&
315 llc->llc_control == LLC_UI && llc
366 struct llc *llc; local
[all...]
H A Dieee80211_superg.c275 #define FF_LLC_SIZE (sizeof(struct ether_header) + sizeof(struct llc))
277 struct llc *llc; local
294 "%s", "m_pullup(llc) failed");
298 llc = (struct llc *)(mtod(m, uint8_t *) +
300 if (llc->llc_snap.ether_type != htons(ATH_FF_ETH_TYPE))
368 struct llc *llc; local
457 M_PREPEND(m1, sizeof(struct llc), M_NOWAI
[all...]
H A Dieee80211_output.c1209 struct llc *llc; local
1219 if (m->m_pkthdr.len < hdrlen + sizeof(*llc))
1222 llc = (struct llc *)mtodo(m, hdrlen);
1223 if (llc->llc_dsap != LLC_SNAP_LSAP ||
1224 llc->llc_ssap != LLC_SNAP_LSAP ||
1225 llc->llc_control != LLC_UI ||
1226 llc->llc_snap.org_code[0] != 0 ||
1227 llc
1480 struct llc *llc; local
4059 struct llc *llc; local
[all...]
H A Dieee80211_mesh.c1261 struct llc *llc; local
1264 if (m->m_len < hdrlen + sizeof(*llc) &&
1265 (m = m_pullup(m, hdrlen + sizeof(*llc))) == NULL) {
1278 llc = (struct llc *)(mtod(m, caddr_t) + hdrlen);
1279 if (llc->llc_dsap == LLC_SNAP_LSAP && llc->llc_ssap == LLC_SNAP_LSAP &&
1280 llc->llc_control == LLC_UI && llc
[all...]
/haiku/src/libs/compat/freebsd_network/compat/net/
H A Dif_llc.h46 struct llc { struct
118 CTASSERT(sizeof (struct llc) == LLC_SNAPFRAMELEN);
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_output.c532 struct llc *llc; local
640 llc = mtod(m, struct llc *);
641 llc->llc_dsap = llc->llc_ssap = LLC_SNAP_LSAP;
642 llc->llc_control = LLC_UI;
643 llc->llc_snap.org_code[0] = 0;
644 llc->llc_snap.org_code[1] = 0;
645 llc
[all...]
H A Dieee80211_input.c1122 struct llc *llc; local
1151 llc = (struct llc *)((caddr_t)wh + hdrlen);
1152 if (llc->llc_dsap == LLC_SNAP_LSAP &&
1153 llc->llc_ssap == LLC_SNAP_LSAP &&
1154 llc->llc_control == LLC_UI &&
1155 llc->llc_snap.org_code[0] == 0 &&
1156 llc->llc_snap.org_code[1] == 0 &&
1157 llc
1230 struct llc *llc; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_tdma.c232 * the encapsulation done by ieee80211_encap (llc). We also
237 + sizeof(struct llc) \

Completed in 102 milliseconds