Browse Source

Add wpa_bss_get_max_rate() to match with old scan_res helpers

Jouni Malinen 15 years ago
parent
commit
99a6a63f25
2 changed files with 23 additions and 0 deletions
  1. 22 0
      wpa_supplicant/bss.c
  2. 1 0
      wpa_supplicant/bss.h

+ 22 - 0
wpa_supplicant/bss.c

@@ -356,3 +356,25 @@ struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
 
 	return buf;
 }
+
+
+int wpa_bss_get_max_rate(const struct wpa_bss *bss)
+{
+	int rate = 0;
+	const u8 *ie;
+	int i;
+
+	ie = wpa_bss_get_ie(bss, WLAN_EID_SUPP_RATES);
+	for (i = 0; ie && i < ie[1]; i++) {
+		if ((ie[i + 2] & 0x7f) > rate)
+			rate = ie[i + 2] & 0x7f;
+	}
+
+	ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_SUPP_RATES);
+	for (i = 0; ie && i < ie[1]; i++) {
+		if ((ie[i + 2] & 0x7f) > rate)
+			rate = ie[i + 2] & 0x7f;
+	}
+
+	return rate;
+}

+ 1 - 0
wpa_supplicant/bss.h

@@ -79,5 +79,6 @@ const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
 const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
 struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
 					    u32 vendor_type);
+int wpa_bss_get_max_rate(const struct wpa_bss *bss);
 
 #endif /* BSS_H */