search for: last_ping_time

Displaying 3 results from an estimated 3 matches for "last_ping_time".

2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...we remember it had an edge to us, clean it up */ - if(report && !c->node->status.reachable) { + if(report && !c->node->status.st.reachable) { edge_t *e; e = lookup_edge(c->node, myself); if(e) { @@ -239,17 +239,17 @@ c = node->data; if(c->last_ping_time + pingtimeout < now) { - if(c->status.active) { - if(c->status.pinged) { + if(c->status.st.active) { + if(c->status.st.pinged) { ifdebug(CONNECTIONS) logger(LOG_INFO, _("%s (%s) didn't respond to PING in %ld seconds"), c->name, c->hostna...
2017 Mar 29
1
Timeout during authentication - connection timeout not configurable?
>> We use tincd over VSAT connections, and if the contract has been reduced to a bare minimum -and- the ship is moving, latency reaches 2 - 5 seconds (yes, seconds). Generally this is not a problem if you are patient (and most smart phones are), but tincd is slightly too fast in deciding that it is not going to work. We also use the tinc connection to check whether any traffic is possible.
2013 Nov 07
2
Segfaults on connection loss
...d99ef8c0, inmaclength = 0, outmaclength = 0, incompression = 0, outcompression = 0, mychallenge = 0x0, hischallenge = 0x0, buffer = "...", buflen = 0, reqlen = 0, tcplen = 0, allow_request = 0, outbuf = 0x1ab75d0 "0 ... 17\n", outbufstart = 0, outbuflen = 0, outbufsize = 14, last_ping_time = 1383624085, last_flushed_time = 1383624085, config_tree = 0x1abb580} (gdb) p c->status.remove $3 = 1 (gdb) p now $4 = 1383624087 (gdb) p pingtimeout $5 = 2 It seems as if something else already cleaned up the connection, also c->status.remove == 1, but we still got to line 263. Anothe...