X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_misc.c;fp=src%2Fprotocol_misc.c;h=c95c9cb92028bfdd279a1d9d4cd76728f85e02b3;hb=a20765791b2a40ddd58452e8f74b0737f1f1f28e;hp=caaa08f11d0beb61a557c7e6e307e03e040294d6;hpb=93f89bcae11e8d250831896bc5694ee8bd2ad22b;p=meshlink diff --git a/src/protocol_misc.c b/src/protocol_misc.c index caaa08f1..c95c9cb9 100644 --- a/src/protocol_misc.c +++ b/src/protocol_misc.c @@ -22,6 +22,7 @@ #include "conf.h" #include "connection.h" #include "logger.h" +#include "meshlink_internal.h" #include "meta.h" #include "net.h" #include "netutl.h" @@ -88,7 +89,7 @@ bool termreq_h(connection_t *c, const char *request) { bool send_ping(connection_t *c) { c->status.pinged = true; - c->last_ping_time = now.tv_sec; + c->last_ping_time = mesh->loop.now.tv_sec; return send_request(c, "%d", PING); }