From 07e26b2926d71cb65491dd4fa443e47388d2c29b Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 3 Feb 2022 11:36:43 +0200 Subject: [PATCH] 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 --- src/common/gas_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2