gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 31/173: wolfssl: display negotiated SSL version and


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 31/173: wolfssl: display negotiated SSL version and cipher
Date: Fri, 24 Feb 2017 14:00:53 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.53.1
in repository gnurl.

commit ba19feba945d6d4aec2688dd43895eb57625c635
Author: Dan Fandrich <address@hidden>
AuthorDate: Sat Jan 7 00:09:10 2017 +0100

    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;
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]