|
@@ -3997,6 +3997,17 @@ static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
|
|
|
if (timeout == 0)
|
|
|
return;
|
|
|
|
|
|
+ if (wpa_s->p2p_in_provisioning) {
|
|
|
+
|
|
|
+ * Use the normal group formation timeout during the
|
|
|
+ * provisioning phase to avoid terminating this process too
|
|
|
+ * early due to group idle timeout.
|
|
|
+ */
|
|
|
+ wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
|
|
|
+ "during provisioning");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
|
|
|
timeout);
|
|
|
eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
|