X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_auth.c;h=3676e9cb6f47ac88ab36f3c90e9849db4aeaa4ba;hb=df4ba45db481a9cda90e487dc154995f590d8b3e;hp=a33c33979c84ba6b20776abb6e7f5f4743f049f7;hpb=fcaa1807cfe424af2498c75b9c6ea6f490dc15ce;p=meshlink diff --git a/src/protocol_auth.c b/src/protocol_auth.c index a33c3397..3676e9cb 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -165,7 +165,10 @@ 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)) { + // Remember its current address + node_add_recent_address(mesh, n, &c->address); + + 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 +346,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) {