X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_misc.c;h=c95c9cb92028bfdd279a1d9d4cd76728f85e02b3;hb=3268e9a2b9fea6779224fe1f3da48b7fc4b9cb46;hp=58b090c21664a86e550e0fc4e9d9513443505c2a;hpb=a86faaf34711d6b0f278b670d70a229a3cf0d479;p=meshlink diff --git a/src/protocol_misc.c b/src/protocol_misc.c index 58b090c2..c95c9cb9 100644 --- a/src/protocol_misc.c +++ b/src/protocol_misc.c @@ -1,7 +1,6 @@ /* protocol_misc.c -- handle the meta-protocol, miscellaneous functions - Copyright (C) 1999-2005 Ivo Timmermans, - 2000-2013 Guus Sliepen + Copyright (C) 2014 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,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" @@ -89,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); }