Browse Source

WPS: Show the received UUID-E from Probe Request in debug log

This makes it easier to debug PBC session overlap issues.
Jouni Malinen 14 years ago
parent
commit
80e75578c4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/wps/wps_registrar.c

+ 2 - 0
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)) {