|
@@ -2360,10 +2360,20 @@ static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
|
|
|
}
|
|
|
|
|
|
|
|
|
+static int freq_included(const struct p2p_channels *channels, unsigned int freq)
|
|
|
+{
|
|
|
+ if (channels == NULL)
|
|
|
+ return 1; /* Assume no restrictions */
|
|
|
+ return p2p_channels_includes_freq(channels, freq);
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
|
|
|
const u8 *go_dev_addr, const u8 *ssid,
|
|
|
size_t ssid_len, int *go, u8 *group_bssid,
|
|
|
- int *force_freq, int persistent_group)
|
|
|
+ int *force_freq, int persistent_group,
|
|
|
+ const struct p2p_channels *channels)
|
|
|
{
|
|
|
struct wpa_supplicant *wpa_s = ctx;
|
|
|
struct wpa_ssid *s;
|
|
@@ -2461,6 +2471,25 @@ accept_inv:
|
|
|
wpas_p2p_set_own_freq_preference(wpa_s, res);
|
|
|
}
|
|
|
|
|
|
+ if (*force_freq > 0 &&
|
|
|
+ (wpa_s->drv_flags & WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
|
|
|
+ if (*go == 0) {
|
|
|
+ /* We are the client */
|
|
|
+ wpa_printf(MSG_DEBUG, "P2P: Peer was found to be "
|
|
|
+ "running a GO but we are capable of MCC, "
|
|
|
+ "figure out the best channel to use");
|
|
|
+ *force_freq = 0;
|
|
|
+ } else if (!freq_included(channels, *force_freq)) {
|
|
|
+ /* We are the GO, and *force_freq is not in the
|
|
|
+ * intersection */
|
|
|
+ wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
|
|
|
+ "in intersection but we are capable of MCC, "
|
|
|
+ "figure out the best channel to use",
|
|
|
+ *force_freq);
|
|
|
+ *force_freq = 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return P2P_SC_SUCCESS;
|
|
|
}
|
|
|
|
|
@@ -4005,14 +4034,6 @@ int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
|
|
|
}
|
|
|
|
|
|
|
|
|
-static int freq_included(const struct p2p_channels *channels, unsigned int freq)
|
|
|
-{
|
|
|
- if (channels == NULL)
|
|
|
- return 1; /* Assume no restrictions */
|
|
|
- return p2p_channels_includes_freq(channels, freq);
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
|
|
|
struct p2p_go_neg_results *params,
|
|
|
int freq, int ht40,
|