From: Jouni Malinen Date: Sun, 18 Jul 2010 21:30:25 +0000 (-0700) Subject: P2P: Add TODO note for Group Formation bit use in AP selection X-Git-Tag: hostap-1-bp~1148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73e492693d1a836e4154f7ed2a100fa9bfa6b2bf;p=thirdparty%2Fhostap.git P2P: Add TODO note for Group Formation bit use in AP selection --- diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c index cc4f1b7be..880794afb 100644 --- a/wpa_supplicant/events.c +++ b/wpa_supplicant/events.c @@ -519,6 +519,14 @@ static struct wpa_ssid * wpa_scan_res_match(struct wpa_supplicant *wpa_s, continue; } +#ifdef CONFIG_P2P + /* + * TODO: skip the AP if its P2P IE has Group Formation + * bit set in the P2P Group Capability Bitmap and we + * are not in Group Formation with that device. + */ +#endif /* CONFIG_P2P */ + /* Matching configuration found */ return ssid; }