From ba19feba945d6d4aec2688dd43895eb57625c635 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sat, 7 Jan 2017 00:09:10 +0100 Subject: wolfssl: display negotiated SSL version and cipher --- lib/vtls/cyassl.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/vtls/cyassl.c b/lib/vtls/cyassl.c index f494a011d..705bb18c2 100644 --- a/lib/vtls/cyassl.c +++ b/lib/vtls/cyassl.c @@ -591,7 +591,13 @@ cyassl_connect_step2(struct connectdata *conn, #endif /* HAVE_ALPN */ conssl->connecting_state = ssl_connect_3; +#if (LIBCYASSL_VERSION_HEX >= 0x03009010) + infof(data, "SSL connection using %s / %s\n", + wolfSSL_get_version(conssl->handle), + wolfSSL_get_cipher_name(conssl->handle)); +#else infof(data, "SSL connected\n"); +#endif return CURLE_OK; } -- cgit v1.2.3