|
@@ -3055,7 +3055,7 @@ static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
|
|
|
if (s) {
|
|
|
int go = s->mode == WPAS_MODE_P2P_GO;
|
|
|
wpas_p2p_group_add_persistent(
|
|
|
- wpa_s, s, go, go ? op_freq : 0, 0, 0, NULL,
|
|
|
+ wpa_s, s, go, 0, go ? op_freq : 0, 0, 0, NULL,
|
|
|
go ? P2P_MAX_INITIAL_CONN_WAIT_GO_REINVOKE : 0);
|
|
|
} else if (bssid) {
|
|
|
wpa_s->user_initiated_pd = 0;
|
|
@@ -3168,7 +3168,6 @@ static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
|
|
|
{
|
|
|
struct wpa_supplicant *wpa_s = ctx;
|
|
|
struct wpa_ssid *ssid;
|
|
|
- int freq;
|
|
|
|
|
|
if (bssid) {
|
|
|
wpa_msg_global(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
|
|
@@ -3224,17 +3223,10 @@ static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
|
|
|
"starting persistent group");
|
|
|
os_sleep(0, 50000);
|
|
|
|
|
|
- freq = wpa_s->p2p_persistent_go_freq;
|
|
|
- if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&
|
|
|
- freq_included(channels, neg_freq)) {
|
|
|
- wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use frequence %d MHz from invitation for GO mode",
|
|
|
- neg_freq);
|
|
|
- freq = neg_freq;
|
|
|
- }
|
|
|
-
|
|
|
wpas_p2p_group_add_persistent(wpa_s, ssid,
|
|
|
ssid->mode == WPAS_MODE_P2P_GO,
|
|
|
- freq,
|
|
|
+ wpa_s->p2p_persistent_go_freq,
|
|
|
+ neg_freq,
|
|
|
wpa_s->p2p_go_ht40, wpa_s->p2p_go_vht,
|
|
|
channels,
|
|
|
ssid->mode == WPAS_MODE_P2P_GO ?
|
|
@@ -5174,12 +5166,12 @@ static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
|
|
|
|
|
|
int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
|
|
|
struct wpa_ssid *ssid, int addr_allocated,
|
|
|
- int freq, int ht40, int vht,
|
|
|
- const struct p2p_channels *channels,
|
|
|
+ int force_freq, int neg_freq, int ht40,
|
|
|
+ int vht, const struct p2p_channels *channels,
|
|
|
int connection_timeout)
|
|
|
{
|
|
|
struct p2p_go_neg_results params;
|
|
|
- int go = 0;
|
|
|
+ int go = 0, freq;
|
|
|
|
|
|
if (ssid->disabled != 2 || ssid->ssid == NULL)
|
|
|
return -1;
|
|
@@ -5205,9 +5197,15 @@ int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
|
|
|
if (ssid->mode != WPAS_MODE_P2P_GO)
|
|
|
return -1;
|
|
|
|
|
|
- freq = wpas_p2p_select_go_freq(wpa_s, freq);
|
|
|
- if (freq < 0)
|
|
|
- return -1;
|
|
|
+ if (force_freq > 0) {
|
|
|
+ freq = wpas_p2p_select_go_freq(wpa_s, force_freq);
|
|
|
+ if (freq < 0)
|
|
|
+ return -1;
|
|
|
+ } else {
|
|
|
+ freq = wpas_p2p_select_go_freq(wpa_s, neg_freq);
|
|
|
+ if (freq < 0 || (freq > 0 && !freq_included(channels, freq)))
|
|
|
+ freq = 0;
|
|
|
+ }
|
|
|
|
|
|
if (wpas_p2p_init_go_params(wpa_s, ¶ms, freq, ht40, vht, channels))
|
|
|
return -1;
|