summaryrefslogtreecommitdiffstats
path: root/common/ssl_calls.h
diff options
context:
space:
mode:
authorKoichiro IWAO <meta@vmeta.jp>2016-09-09 15:42:04 +0900
committerKoichiro IWAO <meta@vmeta.jp>2016-11-22 10:50:30 +0900
commit40e8194122ea914be0679b8c21f2d4aa30b47b96 (patch)
tree0184c9e2d4544ad93ddda9bcd26c928ed716cca9 /common/ssl_calls.h
parenta59645d3c5bb143764bab538fa83a8483a2157d8 (diff)
downloadxrdp-proprietary-40e8194122ea914be0679b8c21f2d4aa30b47b96.tar.gz
xrdp-proprietary-40e8194122ea914be0679b8c21f2d4aa30b47b96.zip
TLS: log TLS version and cipher
Diffstat (limited to 'common/ssl_calls.h')
-rw-r--r--common/ssl_calls.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/ssl_calls.h b/common/ssl_calls.h
index 1277505c..38eaeec2 100644
--- a/common/ssl_calls.h
+++ b/common/ssl_calls.h
@@ -109,4 +109,7 @@ ssl_tls_write(struct ssl_tls *tls, const char *data, int length);
int APP_CC
ssl_tls_can_recv(struct ssl_tls *tls, int sck, int millis);
+const char *ssl_get_version(const struct ssl_st *ssl);
+const char *ssl_get_cipher_name(const struct ssl_st *ssl);
+
#endif