[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
- [GNUnet-SVN] [gnurl] 08/173: test1282: verify the ftp-gss check, (continued)
- [GNUnet-SVN] [gnurl] 08/173: test1282: verify the ftp-gss check, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 24/173: content_encoding: change return code on a failure, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 27/173: darwinssl: --insecure overrides --cacert if both settings are in use, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 32/173: docs/page-header: mention how to disable the progress meter, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 29/173: CIPHERS.md: document GSKit ciphers, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 15/173: RELEASE-NOTES: synced with a7b38c9dc98481e, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 33/173: docs/silent: mention --show-error in --silent description, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 37/173: asiohiper: improved socket handling, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 39/173: RELEASE-NOTES: synced with a41e8592d6b3e58, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 13/173: docs/ciphers: link to our own new page about ciphers, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 31/173: wolfssl: display negotiated SSL version and cipher,
gnunet <=
- [GNUnet-SVN] [gnurl] 28/173: TheArtOfHttpScripting: grammar, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 22/173: tool_operate: Fix --remote-time incorrect times on Windows, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 19/173: cmake: use crypt32.lib when building with OpenSSL on windows, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 26/173: docs/libcurl: TCP_KEEPALIVE start and interval default to 60, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 20/173: curl_formadd.3: CURLFORM_CONTENTSLENGTH not needed when chunked, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 53/173: IDN: Fix compile time detection of linidn2 TR46, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 58/173: curl: reset the easy handle at --next, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 42/173: http2_send: avoid unsigned integer wrap around, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 69/173: http: print correct HTTP string in verbose output when using HTTP/2, gnunet, 2017/02/24
- [GNUnet-SVN] [gnurl] 43/173: smtp: Fix STARTTLS denied error message, gnunet, 2017/02/24