diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2006-01-31 19:49:42 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2006-03-22 22:17:01 -0500 |
commit | b6c7658ef8888e82608265d8098d09807997f771 (patch) | |
tree | 85fa8c98d1184b3f2d8b2483cc9adb8323283e9e /net/ieee80211/softmac/ieee80211softmac_module.c | |
parent | b10c991fa4cf0f1353228e04671aa793b4b3cf1d (diff) | |
download | linux-b6c7658ef8888e82608265d8098d09807997f771.tar.gz linux-b6c7658ef8888e82608265d8098d09807997f771.tar.bz2 linux-b6c7658ef8888e82608265d8098d09807997f771.zip |
[PATCH] softmac: add reassociation code
This patch adds handling of reassociation to softmac when the AP
requests it. Patch from Larry Finger.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211/softmac/ieee80211softmac_module.c')
-rw-r--r-- | net/ieee80211/softmac/ieee80211softmac_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ieee80211/softmac/ieee80211softmac_module.c b/net/ieee80211/softmac/ieee80211softmac_module.c index aa65d5ad4c05..6f99f781bff8 100644 --- a/net/ieee80211/softmac/ieee80211softmac_module.c +++ b/net/ieee80211/softmac/ieee80211softmac_module.c @@ -41,6 +41,7 @@ struct net_device *alloc_ieee80211softmac(int sizeof_priv) softmac->ieee->handle_auth = ieee80211softmac_auth_resp; softmac->ieee->handle_deauth = ieee80211softmac_deauth_resp; softmac->ieee->handle_assoc_response = ieee80211softmac_handle_assoc_response; + softmac->ieee->handle_reassoc_request = ieee80211softmac_handle_reassoc_req; softmac->ieee->handle_disassoc = ieee80211softmac_handle_disassoc; softmac->scaninfo = NULL; |