From 4a10c53b1a2826f616f3a9431d0f8ef13caef98c Mon Sep 17 00:00:00 2001 From: Eric Shu <45149431+ericshu6@users.noreply.github.com> Date: Sun, 10 Nov 2024 11:39:12 -0800 Subject: [PATCH] Increase time to wait for Ethernet connection --- nmrp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmrp.c b/nmrp.c index 2f79e78..8a8a46f 100644 --- a/nmrp.c +++ b/nmrp.c @@ -497,7 +497,7 @@ int nmrp_do(struct nmrpd_args *args) bool unplugged = true; time_t beg = time_monotonic(); - while (!g_interrupted && (time_monotonic() - beg) < 20) { + while (!g_interrupted && (time_monotonic() - beg) < 60) { if (!ethsock_is_unplugged(sock)) { unplugged = false; break;