wpa_supplicant: Use correct interface type when creating P2P interface

When starting ASP provisioning with connection capability set to NEW,
don't create the pending P2P interface as a GO interface because
Go negotiation will determine which side will be the GO and it is
possible that eventually this interface will become the client.
In this case, when the P2P client is started it will start scanning
and do other station specific operations while the interface type
is AP.

Instead, use type WPA_IF_P2P_GROUP when creating the interface which
means the interface type will be determined later.

Signed-off-by: Avrahams Stern <avraham.stern@intel.com>
This commit is contained in:
Avrahams Stern 2016-10-18 12:44:17 +03:00 committed by Jouni Malinen
parent 78a3b23060
commit 847ee1aac3

View file

@ -807,7 +807,7 @@ grp_owner:
wpa_s->own_addr); wpa_s->own_addr);
} else if (!s && !go_wpa_s) { } else if (!s && !go_wpa_s) {
if (wpas_p2p_add_group_interface(wpa_s, if (wpas_p2p_add_group_interface(wpa_s,
WPA_IF_P2P_GO) < 0) { WPA_IF_P2P_GROUP) < 0) {
wpa_printf(MSG_ERROR, wpa_printf(MSG_ERROR,
"P2P: Failed to allocate a new interface for the group"); "P2P: Failed to allocate a new interface for the group");
return P2PS_SETUP_NONE; return P2PS_SETUP_NONE;