From 0f9efa2ee865374ef66c2c6d523cba9321e44091 Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Mon, 16 Jun 2025 17:02:44 +1000 Subject: [PATCH] * room server: suggested keep_alive interval now disabled --- examples/simple_room_server/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple_room_server/main.cpp b/examples/simple_room_server/main.cpp index 740d70e5..d9d9f122 100644 --- a/examples/simple_room_server/main.cpp +++ b/examples/simple_room_server/main.cpp @@ -123,7 +123,7 @@ struct PostInfo { #define PUSH_TIMEOUT_BASE 4000 #define PUSH_ACK_TIMEOUT_FACTOR 2000 -#define CLIENT_KEEP_ALIVE_SECS 128 +#define CLIENT_KEEP_ALIVE_SECS 0 // Now Disabled (was 128) #define REQ_TYPE_GET_STATUS 0x01 // same as _GET_STATS #define REQ_TYPE_KEEP_ALIVE 0x02