From ecb9d751b48b0c3c752e68e47350fd4c3bf834be Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Wed, 3 Apr 2002 09:45:39 +0000 Subject: [PATCH] Better security property logging, logs PFS setting now too. --- apps/silcd/protocol.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/silcd/protocol.c b/apps/silcd/protocol.c index 9e218217..ed22ce15 100644 --- a/apps/silcd/protocol.c +++ b/apps/silcd/protocol.c @@ -310,11 +310,12 @@ int silc_server_protocol_ke_set_keys(SilcServer server, sock->user_data = (void *)conn_data; - SILC_LOG_INFO(("%s (%s) security properties: %s %s %s", + SILC_LOG_INFO(("%s (%s) security properties: %s %s %s %s", sock->hostname, sock->ip, idata->send_key->cipher->name, (char *)silc_hmac_get_name(idata->hmac_send), - idata->hash->hash->name)); + idata->hash->hash->name, + ske->prop->flags & SILC_SKE_SP_FLAG_PFS ? "PFS" : "")); return TRUE; } -- 2.24.0