Browse Source

P2P: Add wpas_notify_p2p_sd_request

Signed-off-by: Konguraj(Raj) Kulanthaivel <konguraj.kulanthaivel@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Konguraj(Raj) Kulanthaivel 14 years ago
parent
commit
e1653cac23
3 changed files with 15 additions and 0 deletions
  1. 8 0
      wpa_supplicant/notify.c
  2. 4 0
      wpa_supplicant/notify.h
  3. 3 0
      wpa_supplicant/p2p_supplicant.c

+ 8 - 0
wpa_supplicant/notify.c

@@ -387,4 +387,12 @@ void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
 {
 }
 
+
+void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
+				int freq, const u8 *sa, u8 dialog_token,
+				u16 update_indic, const u8 *tlvs,
+				size_t tlvs_len)
+{
+}
+
 #endif /* CONFIG_P2P */

+ 4 - 0
wpa_supplicant/notify.h

@@ -91,5 +91,9 @@ void wpas_notify_p2p_go_neg_completed(struct wpa_supplicant *wpa_s,
 				      int status);
 void wpas_notify_p2p_invitation_result(struct wpa_supplicant *wpa_s,
 				       int status, const u8 *bssid);
+void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
+				int freq, const u8 *sa, u8 dialog_token,
+				u16 update_indic, const u8 *tlvs,
+				size_t tlvs_len);
 
 #endif /* NOTIFY_H */

+ 3 - 0
wpa_supplicant/p2p_supplicant.c

@@ -1582,6 +1582,9 @@ void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
 	}
 
 done:
+	wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
+				   update_indic, tlvs, tlvs_len);
+
 	wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
 
 	wpabuf_free(resp);