From: Jouni Malinen Date: Tue, 9 Nov 2010 09:24:06 +0000 (+0200) Subject: WPS: Add wildcard AuthorizedMACs entry for PBC X-Git-Tag: hostap-1-bp~878 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22a062815d14033ce1d8ebcdf94bf08fad493860;p=thirdparty%2Fhostap.git WPS: Add wildcard AuthorizedMACs entry for PBC --- diff --git a/src/wps/wps_registrar.c b/src/wps/wps_registrar.c index 21fc35d06..d98c6aac8 100644 --- a/src/wps/wps_registrar.c +++ b/src/wps/wps_registrar.c @@ -841,6 +841,8 @@ static void wps_registrar_stop_pbc(struct wps_registrar *reg) { reg->selected_registrar = 0; reg->pbc = 0; + wps_registrar_remove_authorized_mac(reg, + (u8 *) "\xff\xff\xff\xff\xff\xff"); wps_registrar_selected_registrar_changed(reg); } @@ -876,6 +878,8 @@ int wps_registrar_button_pushed(struct wps_registrar *reg) reg->force_pbc_overlap = 0; reg->selected_registrar = 1; reg->pbc = 1; + wps_registrar_add_authorized_mac(reg, + (u8 *) "\xff\xff\xff\xff\xff\xff"); wps_registrar_selected_registrar_changed(reg); eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);