Don't call event_del() from the mtuevent handler, always send_mtu_probe() in ans_key_h().
[tinc] / src / protocol_key.c
index ab56ac5..1e7aa03 100644 (file)
@@ -34,7 +34,7 @@
 
 static bool mykeyused = false;
 
-void send_key_changed() {
+void send_key_changed(void) {
        splay_node_t *node;
        connection_t *c;
 
@@ -275,7 +275,7 @@ bool ans_key_h(connection_t *c, char *request) {
                update_node_udp(from, &sa);
        }
 
-       if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuevent)
+       if(from->options & OPTION_PMTU_DISCOVERY)
                send_mtu_probe(from);
 
        return true;