From 968466bc56c33b30fea6e30d14488e31f7ac85ae Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Mon, 27 Sep 2021 00:20:25 +0200 Subject: [PATCH] Don't send UDP probes to tiny nodes. --- src/pmtu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pmtu.c b/src/pmtu.c index 0d5e8fd5..179d8966 100644 --- a/src/pmtu.c +++ b/src/pmtu.c @@ -410,7 +410,7 @@ static void try_pmtu(meshlink_handle_t *mesh, node_t *n) { */ void keepalive(meshlink_handle_t *mesh, node_t *n, bool traffic) { - if(!n->status.reachable || !n->status.validkey) { + if(!n->status.reachable || !n->status.validkey || n->status.tiny) { return; } -- 2.39.2