X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet.c;h=81a0d894daaf8f818a8139c72404be5f40a7ea5f;hp=e40caefd8a1d2c922bbdda47a4b86eeb2064d12f;hb=0200d3cd5d773d9b101c33264532d2a301c2af32;hpb=de78d79db84c486afcc353884ec1770866beb653 diff --git a/src/net.c b/src/net.c index e40caefd..81a0d894 100644 --- a/src/net.c +++ b/src/net.c @@ -241,7 +241,7 @@ static void check_dead_connections(void) if(c->last_ping_time + pingtimeout < now) { if(c->status.active) { if(c->status.pinged) { - ifdebug(CONNECTIONS) logger(LOG_INFO, _("%s (%s) didn't respond to PING in %d seconds"), + ifdebug(CONNECTIONS) logger(LOG_INFO, _("%s (%s) didn't respond to PING in %ld seconds"), c->name, c->hostname, now - c->last_ping_time); c->status.timeout = true; terminate_connection(c, true); @@ -251,7 +251,7 @@ static void check_dead_connections(void) } else { if(c->status.remove) { logger(LOG_WARNING, _("Old connection_t for %s (%s) status %04x still lingering, deleting..."), - c->name, c->hostname, *(uint32_t *)&c->status); + c->name, c->hostname, c->status.value); connection_del(c); continue; } @@ -270,7 +270,7 @@ static void check_dead_connections(void) if(c->outbuflen > 0 && c->last_flushed_time + pingtimeout < now) { if(c->status.active) { ifdebug(CONNECTIONS) logger(LOG_INFO, - _("%s (%s) could not flush for %d seconds (%d bytes remaining)"), + _("%s (%s) could not flush for %ld seconds (%d bytes remaining)"), c->name, c->hostname, now - c->last_flushed_time, c->outbuflen); c->status.timeout = true; terminate_connection(c, true); @@ -354,13 +354,15 @@ int main_loop(void) fd_set readset, writeset; struct timeval tv; int r, maxfd; - time_t last_ping_check, last_config_check; + time_t last_ping_check, last_config_check, last_graph_dump; event_t *event; cp(); last_ping_check = now; last_config_check = now; + last_graph_dump = now; + srand(now); running = true; @@ -478,6 +480,13 @@ int main_loop(void) try_outgoing_connections(); } + + /* Dump graph if wanted every 60 seconds*/ + + if(last_graph_dump + 60 < now) { + dump_graph(); + last_graph_dump = now; + } } return 0;