X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fio.c;h=b18ad5da6123bb2136e78c3d811ca122d8dd59b1;hb=f1fe87f7869f0ad40a9d76d8dda7c5b17b1c58ff;hp=d7d145065d918f1fe6c6fb8826af8077700344a7;hpb=deb4f55827169d56a79a0129ffc1834cc022e2b3;p=plomrogue diff --git a/src/client/io.c b/src/client/io.c index d7d1450..b18ad5d 100644 --- a/src/client/io.c +++ b/src/client/io.c @@ -211,25 +211,26 @@ static void test_and_poll_server() static time_t last_server_answer_time = 0; static time_t last_pong_time = 0; static uint8_t ping_sent = 0; + uint8_t wait = 15; if (read_file_into_queue(world.file_server_out, &world.queue)) { last_server_answer_time = time(0); return; } time_t now = time(0); - if (ping_sent && last_server_answer_time > now - 5) /* Re-set if last */ + if (ping_sent && last_server_answer_time > now - wait)/* Re-set if last */ { /* ping was answered */ ping_sent = 0; /* with server */ return; /* activity. */ } - if (!ping_sent && last_server_answer_time < now - 5) + if (!ping_sent && last_server_answer_time < now - wait) { send("PING"); ping_sent = 1; last_pong_time = now; return; } - exit_err(ping_sent && last_pong_time < now - 5, "Server not answering."); + exit_err(ping_sent && last_pong_time < now - wait, "Server not answering."); }