From 728572def225bd84236ef0d93e8273b27a683063 Mon Sep 17 00:00:00 2001 From: William Ahern Date: Mon, 15 Oct 2012 12:39:39 -0700 Subject: -n forgot that :starttls can also take an SSL_CTX object, and update the documentation --- openssl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openssl.c b/openssl.c index 415b21e..5062b7d 100644 --- a/openssl.c +++ b/openssl.c @@ -2986,10 +2986,10 @@ static int sx_new(lua_State *L) { static const char *opts[] = { "SSLv2", "SSLv3", "SSLv23", "SSL", "TLSv1", "TLS", NULL }; - SSL_CTX **ud = prepsimple(L, SSL_CTX_CLASS); /* later versions of SSL declare a const qualifier on the return type */ __typeof__(&TLSv1_client_method) method = &TLSv1_client_method; _Bool srv; + SSL_CTX **ud; lua_settop(L, 2); srv = lua_toboolean(L, 2); @@ -3015,6 +3015,8 @@ static int sx_new(lua_State *L) { break; } + ud = prepsimple(L, SSL_CTX_CLASS); + if (!(*ud = SSL_CTX_new(method()))) return throwssl(L, "ssl.context.new"); -- cgit v1.2.3-59-g8ed1b