diff options
author | Jouni Malinen <j@w1.fi> | 2008-11-29 21:27:25 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2008-11-29 21:27:25 +0200 |
commit | 06384c662a6e0131763c19cd32a52e403eb8c851 (patch) | |
tree | 4781c38dd280857a9194e5e691f0fa741cb3db84 /hostapd | |
parent | 8874b727ab281dbab818bc252b00092f8d5f3142 (diff) | |
download | external_wpa_supplicant_8_ti-06384c662a6e0131763c19cd32a52e403eb8c851.zip external_wpa_supplicant_8_ti-06384c662a6e0131763c19cd32a52e403eb8c851.tar.gz external_wpa_supplicant_8_ti-06384c662a6e0131763c19cd32a52e403eb8c851.tar.bz2 |
WPS: Added driver_test debug dump of Beacon/ProbeResp WPS IE
Diffstat (limited to 'hostapd')
-rw-r--r-- | hostapd/driver_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hostapd/driver_test.c b/hostapd/driver_test.c index d524083..4ccc48f 100644 --- a/hostapd/driver_test.c +++ b/hostapd/driver_test.c @@ -762,6 +762,7 @@ static int test_driver_set_wps_beacon_ie(const char *ifname, void *priv, struct test_driver_data *drv = priv; struct test_driver_bss *bss; + wpa_hexdump(MSG_DEBUG, "test_driver: Beacon WPS IE", ie, len); bss = test_driver_get_bss(drv, ifname); if (bss == NULL) return -1; @@ -792,6 +793,7 @@ static int test_driver_set_wps_probe_resp_ie(const char *ifname, void *priv, struct test_driver_data *drv = priv; struct test_driver_bss *bss; + wpa_hexdump(MSG_DEBUG, "test_driver: ProbeResp WPS IE", ie, len); bss = test_driver_get_bss(drv, ifname); if (bss == NULL) return -1; |