Browse Source

P2P: Add wpas_notify_p2p_sd_response

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
43a26f606c
3 changed files with 12 additions and 0 deletions
  1. 7 0
      wpa_supplicant/notify.c
  2. 3 0
      wpa_supplicant/notify.h
  3. 2 0
      wpa_supplicant/p2p_supplicant.c

+ 7 - 0
wpa_supplicant/notify.c

@@ -395,4 +395,11 @@ void wpas_notify_p2p_sd_request(struct wpa_supplicant *wpa_s,
 {
 }
 
+
+void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s,
+				 const u8 *sa, u16 update_indic,
+				 const u8 *tlvs, size_t tlvs_len)
+{
+}
+
 #endif /* CONFIG_P2P */

+ 3 - 0
wpa_supplicant/notify.h

@@ -95,5 +95,8 @@ 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);
+void wpas_notify_p2p_sd_response(struct wpa_supplicant *wpa_s,
+				 const u8 *sa, u16 update_indic,
+				 const u8 *tlvs, size_t tlvs_len);
 
 #endif /* NOTIFY_H */

+ 2 - 0
wpa_supplicant/p2p_supplicant.c

@@ -1651,6 +1651,8 @@ void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
 
 		pos = tlv_end;
 	}
+
+	wpas_notify_p2p_sd_response(wpa_s, sa, update_indic, tlvs, tlvs_len);
 }