X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_auth.c;h=e80af7d94a7c3f246e9267eb5fde93d6fd4b534d;hb=009b6208f5a15e932c7e85f7e357a6c821770274;hp=4026c41f54738e14623769513f61c9a25a032caa;hpb=477973fd217114dec8218cb7f8d99655272a3669;p=meshlink diff --git a/src/protocol_auth.c b/src/protocol_auth.c index 4026c41f..e80af7d9 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -165,7 +165,7 @@ static bool finalize_invitation(meshlink_handle_t *mesh, connection_t *c, const n->ecdsa = ecdsa_set_public_key(data); n->submesh = c->submesh; - if(!node_write_config(mesh, n)) { + if(!node_write_config(mesh, n) || !config_sync(mesh, "current")) { logger(mesh, MESHLINK_ERROR, "Error writing configuration file for invited node %s!\n", c->name); free_node(n); return false; @@ -343,9 +343,7 @@ bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) { return false; } - node_read_public_key(mesh, n); - - if(!ecdsa_active(n->ecdsa)) { + if(!node_read_public_key(mesh, n)) { logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name); if(n->status.reachable && !n->status.waitingforkey) { @@ -436,9 +434,11 @@ bool ack_h(meshlink_handle_t *mesh, connection_t *c, const char *request) { n->connection->outgoing = NULL; } + /* Remove the edge before terminating the connection, to prevent a graph update. */ + edge_del(mesh, n->connection->edge); + n->connection->edge = NULL; + terminate_connection(mesh, n->connection, false); - /* Run graph algorithm to keep things in sync */ - graph(mesh); } }