From: Jouni Malinen Date: Thu, 10 Mar 2011 16:38:16 +0000 (+0200) Subject: WPS: Show the received UUID-E from Probe Request in debug log X-Git-Tag: hostap-1-bp~507 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80e75578c4e67438ea3b9eb67fbe92e11072e96e;p=thirdparty%2Fhostap.git WPS: Show the received UUID-E from Probe Request in debug log This makes it easier to debug PBC session overlap issues. --- diff --git a/src/wps/wps_registrar.c b/src/wps/wps_registrar.c index e7f1a9ac7..3d7bd9925 100644 --- a/src/wps/wps_registrar.c +++ b/src/wps/wps_registrar.c @@ -1005,6 +1005,8 @@ void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr, "UUID-E included"); return; } + wpa_hexdump(MSG_DEBUG, "WPS: UUID-E from Probe Request", attr.uuid_e, + WPS_UUID_LEN); wps_registrar_add_pbc_session(reg, addr, attr.uuid_e); if (wps_registrar_pbc_overlap(reg, addr, attr.uuid_e)) {