X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fprotocol_auth.c;h=1f2e24a2ce8d9d6def723ee1a851ac4b5928ccef;hb=c31f626c3a252a0d6805a5f3ca9154d934ea41f5;hp=e1a9a31341f8b73846628e49509335b1f4c0e511;hpb=1c838cf7d4b4a97fe1038bfacbcb4207ca3ce9ca;p=meshlink diff --git a/src/protocol_auth.c b/src/protocol_auth.c index e1a9a313..1f2e24a2 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -267,11 +267,6 @@ bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) { return false; } - if(n->status.blacklisted) { - logger(mesh, MESHLINK_WARNING, "Peer %s is blacklisted", c->name); - return false; - } - if(!node_read_public_key(mesh, n)) { logger(mesh, MESHLINK_ERROR, "No key known for peer %s", c->name); @@ -309,6 +304,13 @@ bool id_h(meshlink_handle_t *mesh, connection_t *c, const char *request) { } bool send_ack(meshlink_handle_t *mesh, connection_t *c) { + node_t *n = lookup_node(mesh, c->name); + + if(n && n->status.blacklisted) { + logger(mesh, MESHLINK_WARNING, "Peer %s is blacklisted", c->name); + return send_error(mesh, c, BLACKLISTED, "blacklisted"); + } + c->last_ping_time = mesh->loop.now.tv_sec; return send_request(mesh, c, NULL, "%d %s %d %x", ACK, mesh->myport, mesh->devclass, OPTION_PMTU_DISCOVERY | (PROT_MINOR << 24)); }