X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fgraph.c;h=b0e0b77a198a408cd2d88aecb2c4debde09022d3;hb=ce4dfa68147745b116ee316b012653b11a328cd9;hp=e6212116528a64d17bb0b03d5e209ace106158fe;hpb=a97a07d79c847d0b30c61a2589e7bde62f25d603;p=meshlink diff --git a/src/graph.c b/src/graph.c index e6212116..b0e0b77a 100644 --- a/src/graph.c +++ b/src/graph.c @@ -173,17 +173,22 @@ static void check_reachability(meshlink_handle_t *mesh) { n->status.reachable = !n->status.reachable; n->status.dirty = true; - if(n->status.reachable) { - logger(mesh, MESHLINK_DEBUG, "Node %s became reachable", n->name); - bool first_time_reachable = !n->last_reachable; - n->last_reachable = mesh->loop.now.tv_sec; - - if(first_time_reachable) { - node_write_config(mesh, n); + if(!n->status.blacklisted) { + if(n->status.reachable) { + logger(mesh, MESHLINK_DEBUG, "Node %s became reachable", n->name); + bool first_time_reachable = !n->last_reachable; + n->last_reachable = time(NULL); + + if(first_time_reachable) { + if(!node_write_config(mesh, n)) { + logger(mesh, MESHLINK_WARNING, "Could not write host config file for node %s!\n", n->name); + + } + } + } else { + logger(mesh, MESHLINK_DEBUG, "Node %s became unreachable", n->name); + n->last_unreachable = time(NULL); } - } else { - logger(mesh, MESHLINK_DEBUG, "Node %s became unreachable", n->name); - n->last_unreachable = mesh->loop.now.tv_sec; } /* TODO: only clear status.validkey if node is unreachable? */ @@ -224,7 +229,7 @@ static void check_reachability(meshlink_handle_t *mesh) { mesh->last_unreachable = mesh->loop.now.tv_sec; if(mesh->threadstarted) { - timeout_set(&mesh->loop, &mesh->periodictimer, &(struct timeval) { + timeout_set(&mesh->loop, &mesh->periodictimer, &(struct timespec) { 0, prng(mesh, TIMER_FUDGE) }); }