Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 183398
b: refs/heads/master
c: f679f65
h: refs/heads/master
v: v3
  • Loading branch information
Johannes Berg authored and John W. Linville committed Dec 28, 2009
1 parent ccb2b7f commit c75390a
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 108 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 63f170e0c80a131cdd549fab7afb5036009944fc
refs/heads/master: f679f65d417c3ea3f91b4bbfb68e3951c9eb8f04
53 changes: 35 additions & 18 deletions trunk/net/mac80211/ieee80211_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,31 +227,48 @@ struct mesh_preq_queue {
u8 flags;
};

enum ieee80211_mgd_state {
IEEE80211_MGD_STATE_INVALID,
IEEE80211_MGD_STATE_PROBE,
IEEE80211_MGD_STATE_AUTH,
IEEE80211_MGD_STATE_ASSOC,
enum ieee80211_work_type {
IEEE80211_WORK_AUTH_PROBE,
IEEE80211_WORK_AUTH,
IEEE80211_WORK_ASSOC,
};

struct ieee80211_mgd_work {
struct ieee80211_work {
struct list_head list;
struct ieee80211_bss *bss;
int ie_len;
u8 prev_bssid[ETH_ALEN];
u8 ssid[IEEE80211_MAX_SSID_LEN];
u8 ssid_len;
unsigned long timeout;
enum ieee80211_mgd_state state;
u16 auth_alg, auth_transaction;

int tries;
struct ieee80211_channel *chan;
/* XXX: chan type? -- right now not really needed */
unsigned long timeout;
enum ieee80211_work_type type;

u8 key[WLAN_KEY_LEN_WEP104];
u8 key_len, key_idx;
union {
struct {
int tries;
u16 algorithm, transaction;
u8 ssid[IEEE80211_MAX_SSID_LEN];
u8 ssid_len;
u8 bssid[ETH_ALEN];
u8 key[WLAN_KEY_LEN_WEP104];
u8 key_len, key_idx;
bool privacy;
} auth;
struct {
struct ieee80211_bss *bss;
const u8 *supp_rates;
const u8 *ht_information_ie;
int tries;
u16 capability;
u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
u8 ssid[IEEE80211_MAX_SSID_LEN];
u8 ssid_len;
u8 supp_rates_len;
bool wmm_used;
} assoc;
};

int ie_len;
/* must be last */
u8 ie[0]; /* for auth or assoc frame, not probe */
u8 ie[0];
};

/* flags used in struct ieee80211_if_managed.flags */
Expand Down
Loading

0 comments on commit c75390a

Please sign in to comment.