ieee80211_var.h (a634d6a78846e4ed939933396d3c656041bb47a8) | ieee80211_var.h (c4f040c3f35ba6946ba3c71367af4144536354a7) |
---|---|
1/*- 2 * Copyright (c) 2001 Atsushi Onoe 3 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 182 unchanged lines hidden (view full) --- 191 const struct ieee80211_aclator *ic_acl; 192 void *ic_as; 193}; 194 195#define IEEE80211_ADDR_EQ(a1,a2) (memcmp(a1,a2,IEEE80211_ADDR_LEN) == 0) 196#define IEEE80211_ADDR_COPY(dst,src) memcpy(dst,src,IEEE80211_ADDR_LEN) 197 198/* ic_flags */ | 1/*- 2 * Copyright (c) 2001 Atsushi Onoe 3 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 182 unchanged lines hidden (view full) --- 191 const struct ieee80211_aclator *ic_acl; 192 void *ic_as; 193}; 194 195#define IEEE80211_ADDR_EQ(a1,a2) (memcmp(a1,a2,IEEE80211_ADDR_LEN) == 0) 196#define IEEE80211_ADDR_COPY(dst,src) memcpy(dst,src,IEEE80211_ADDR_LEN) 197 198/* ic_flags */ |
199/* NB: bits 0x6f available */ | 199/* NB: bits 0x4f available */ |
200/* NB: this is intentionally setup to be IEEE80211_CAPINFO_PRIVACY */ 201#define IEEE80211_F_PRIVACY 0x00000010 /* CONF: privacy enabled */ | 200/* NB: this is intentionally setup to be IEEE80211_CAPINFO_PRIVACY */ 201#define IEEE80211_F_PRIVACY 0x00000010 /* CONF: privacy enabled */ |
202#define IEEE80211_F_PUREG 0x00000020 /* CONF: 11g w/o 11b sta's */ |
|
202#define IEEE80211_F_SCAN 0x00000080 /* STATUS: scanning */ 203#define IEEE80211_F_ASCAN 0x00000100 /* STATUS: active scan */ 204#define IEEE80211_F_SIBSS 0x00000200 /* STATUS: start IBSS */ 205/* NB: this is intentionally setup to be IEEE80211_CAPINFO_SHORT_SLOTTIME */ 206#define IEEE80211_F_SHSLOT 0x00000400 /* STATUS: use short slot time*/ 207#define IEEE80211_F_PMGTON 0x00000800 /* CONF: Power mgmt enable */ 208#define IEEE80211_F_DESBSSID 0x00001000 /* CONF: des_bssid is set */ 209#define IEEE80211_F_WME 0x00002000 /* CONF: enable WME use */ --- 157 unchanged lines hidden --- | 203#define IEEE80211_F_SCAN 0x00000080 /* STATUS: scanning */ 204#define IEEE80211_F_ASCAN 0x00000100 /* STATUS: active scan */ 205#define IEEE80211_F_SIBSS 0x00000200 /* STATUS: start IBSS */ 206/* NB: this is intentionally setup to be IEEE80211_CAPINFO_SHORT_SLOTTIME */ 207#define IEEE80211_F_SHSLOT 0x00000400 /* STATUS: use short slot time*/ 208#define IEEE80211_F_PMGTON 0x00000800 /* CONF: Power mgmt enable */ 209#define IEEE80211_F_DESBSSID 0x00001000 /* CONF: des_bssid is set */ 210#define IEEE80211_F_WME 0x00002000 /* CONF: enable WME use */ --- 157 unchanged lines hidden --- |