--- lbbs/src/bbs_net.c 2025/11/04 13:49:51 1.76 +++ lbbs/src/bbs_net.c 2025/11/05 01:04:06 1.78 @@ -3,7 +3,7 @@ * bbs_net * - user interactive feature of site shuttle * - * Copyright (C) 2004-2025 by Leaflet + * Copyright (C) 2004-2025 Leaflet */ #include "bbs.h" @@ -476,7 +476,7 @@ static int bbsnet_connect(int n) } else if (nfds == 0) // timeout { - if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME) + if (time(NULL) - BBS_last_access_tm >= BBS_max_user_idle_time) { break; } @@ -874,7 +874,7 @@ extern int bbs_net() log_error("KEY_NULL\n"); goto cleanup; case KEY_TIMEOUT: - if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME) + if (time(NULL) - BBS_last_access_tm >= BBS_max_user_idle_time) { log_error("User input timeout\n"); goto cleanup;