summaryrefslogtreecommitdiff
path: root/src/supplemental
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-07-22 17:08:10 -0700
committerGarrett D'Amore <garrett@damore.org>2024-07-22 17:08:10 -0700
commitb15a206deb869f0d6cb7e8acc8db04c35c5bf8b7 (patch)
tree12ca41fa399a0a02229d222ded973b02593679a1 /src/supplemental
parentd6c9c11b442d7f7dfe5c4de092f7970a2d1eb113 (diff)
downloadnng-b15a206deb869f0d6cb7e8acc8db04c35c5bf8b7.tar.gz
nng-b15a206deb869f0d6cb7e8acc8db04c35c5bf8b7.tar.bz2
nng-b15a206deb869f0d6cb7e8acc8db04c35c5bf8b7.zip
TLS: announce which engine we are using (in anticipation of newer TLS engines)
Diffstat (limited to 'src/supplemental')
-rw-r--r--src/supplemental/tls/tls_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/supplemental/tls/tls_common.c b/src/supplemental/tls/tls_common.c
index 62296de0..a6b3a8d6 100644
--- a/src/supplemental/tls/tls_common.c
+++ b/src/supplemental/tls/tls_common.c
@@ -1521,6 +1521,7 @@ nng_tls_engine_register(const nng_tls_engine *engine)
NNG_TLS_ENGINE_VERSION);
return (NNG_ENOTSUP);
}
+ nng_log_info("NNG-TLS-INFO", "TLS Engine: %s", engine->description);
nni_atomic_set_ptr(&tls_engine, (void *) engine);
return (0);
}