summary refs log tree commit diff stats
path: root/src/common/hexchat.h
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-10-22 05:24:29 -0400
committerTingPing <tingping@tingping.se>2014-11-05 01:27:39 -0500
commit4b6215051f1d3b484e32dc95e33d83202bd89959 (patch)
tree38f13abe18a40c2674e996074094862fc641f526 /src/common/hexchat.h
parentf83d78dd2801c7e4bee406379d3119f8852cf297 (diff)
ssl: Don't use global openssl context
Fixes #789
Diffstat (limited to 'src/common/hexchat.h')
-rw-r--r--src/common/hexchat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/hexchat.h b/src/common/hexchat.h
index bbf32da5..993a209e 100644
--- a/src/common/hexchat.h
+++ b/src/common/hexchat.h
@@ -502,6 +502,7 @@ typedef struct server
 	struct msproxy_state_t msp_state;
 	int id;					/* unique ID number (for plugin API) */
 #ifdef USE_OPENSSL
+	SSL_CTX *ctx;
 	SSL *ssl;
 	int ssl_do_connect_tag;
 #else