From 2d867ce2e2f0cb8251e16f620a33312054270e8f Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Mon, 26 Aug 2013 16:52:14 +0200 Subject: When timing out while reading from a TLS server, shutdown the socket properly. Also signal the "client writer" (clientwr()). Together, this should result in TLS connections being cleaned up properly. Patch by Fabian Mauchle. --- tls.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tls.c') diff --git a/tls.c b/tls.c index 4a825ec..dc70977 100644 --- a/tls.c +++ b/tls.c @@ -290,8 +290,17 @@ void *tlsclientrd(void *arg) { } } } + debug(DBG_INFO, "tlsclientrd: exiting for %s", server->conf->name); ERR_remove_state(0); + SSL_shutdown(server->ssl); + shutdown(server->sock, SHUT_RDWR); + close(server->sock); + + /* Wake up clientwr(). */ server->clientrdgone = 1; + pthread_mutex_lock(&server->newrq_mutex); + pthread_cond_signal(&server->newrq_cond); + pthread_mutex_unlock(&server->newrq_mutex); return NULL; } -- cgit v1.1