Browse Source

Add WPS Registrar success callback

Jouni Malinen 15 years ago
parent
commit
195420b8d1
2 changed files with 7 additions and 0 deletions
  1. 4 0
      src/ap/hostapd.h
  2. 3 0
      src/ap/wps_hostapd.c

+ 4 - 0
src/ap/hostapd.h

@@ -171,6 +171,10 @@ struct hostapd_data {
 
 	struct hostapd_probereq_cb *probereq_cb;
 	size_t num_probereq_cb;
+
+	void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
+				   const u8 *uuid_e);
+	void *wps_reg_success_cb_ctx;
 };
 
 

+ 3 - 0
src/ap/wps_hostapd.c

@@ -152,6 +152,9 @@ static void hostapd_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
 		return;
 	wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_REG_SUCCESS MACSTR " %s",
 		MAC2STR(mac_addr), uuid);
+	if (hapd->wps_reg_success_cb)
+		hapd->wps_reg_success_cb(hapd->wps_reg_success_cb_ctx,
+					 mac_addr, uuid_e);
 }