1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

ntpclient: make retries less sparse

This commit is contained in:
Andy Green 2020-04-17 05:25:32 +01:00
parent 8299bd4191
commit ef294c979f

View file

@ -50,7 +50,8 @@ struct vhd_ntpc {
* and the transaction forever.
*/
static const uint32_t botable[] = { 1000, 1250, 1500, 2000, 3000 };
static const uint32_t botable[] =
{ 300, 500, 650, 800, 800, 900, 1000, 1100, 1500 };
static const lws_retry_bo_t bo = {
botable, LWS_ARRAY_SIZE(botable), LWS_RETRY_CONCEAL_ALWAYS, 0, 0, 20 };