From: Guus Sliepen Date: Sun, 14 Oct 2012 12:45:27 +0000 (+0200) Subject: Only log success of initial datagram SPTPS handshake. X-Git-Tag: release-1.1pre3~7 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=ee1d655f2f1ede6da66b6268974d6f9585c616b3 Only log success of initial datagram SPTPS handshake. --- diff --git a/src/net_packet.c b/src/net_packet.c index c61bc60a..67ebc223 100644 --- a/src/net_packet.c +++ b/src/net_packet.c @@ -674,9 +674,11 @@ bool receive_sptps_record(void *handle, uint8_t type, const char *data, uint16_t node_t *from = handle; if(type == SPTPS_HANDSHAKE) { - from->status.validkey = true; - from->status.waitingforkey = false; - logger(DEBUG_META, LOG_INFO, "SPTPS key exchange with %s (%s) succesful", from->name, from->hostname); + if(!from->status.validkey) { + from->status.validkey = true; + from->status.waitingforkey = false; + logger(DEBUG_META, LOG_INFO, "SPTPS key exchange with %s (%s) succesful", from->name, from->hostname); + } return true; }