mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
dont deny auth
This commit is contained in:
parent
c6af6b5532
commit
8c2696bb59
1 changed files with 2 additions and 1 deletions
|
@ -571,7 +571,8 @@ static int hostapd_notify(struct ubus_context *ctx, struct ubus_object *obj,
|
||||||
if (strncmp(method, "probe", 5) == 0) {
|
if (strncmp(method, "probe", 5) == 0) {
|
||||||
return handle_probe_req(msg);
|
return handle_probe_req(msg);
|
||||||
} else if (strncmp(method, "auth", 4) == 0) {
|
} else if (strncmp(method, "auth", 4) == 0) {
|
||||||
return handle_auth_req(msg);
|
//return handle_auth_req(msg);
|
||||||
|
return 0;
|
||||||
} else if (strncmp(method, "assoc", 5) == 0) {
|
} else if (strncmp(method, "assoc", 5) == 0) {
|
||||||
return handle_assoc_req(msg);
|
return handle_assoc_req(msg);
|
||||||
} else if (strncmp(method, "deauth", 6) == 0) {
|
} else if (strncmp(method, "deauth", 6) == 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue