From: Jouni Malinen Date: Thu, 3 Feb 2022 09:36:43 +0000 (+0200) Subject: GAS server: Increase query timeout to 60 seconds for DPP X-Git-Tag: hostap_2_11~2255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07e26b2926d71cb65491dd4fa443e47388d2c29b;p=thirdparty%2Fhostap.git GAS server: Increase query timeout to 60 seconds for DPP DPP Enrollee might wait for the configuration for 60 seconds, so increase the DPP Configurator timeout for the GAS server operation to 60 seconds to cover that full wait time. This is needed for cases where user interaction can take significant amount of time before the configuration response can be generated. Signed-off-by: Jouni Malinen --- diff --git a/src/common/gas_server.c b/src/common/gas_server.c index 3d5a27cf0..745a13fc0 100644 --- a/src/common/gas_server.c +++ b/src/common/gas_server.c @@ -19,7 +19,7 @@ #define MAX_ADV_PROTO_ID_LEN 10 -#define GAS_QUERY_TIMEOUT 10 +#define GAS_QUERY_TIMEOUT 60 struct gas_server_handler { struct dl_list list;