diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-08-26 17:02:07 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-09-02 13:54:41 +0200 |
commit | 9196c24668f478642b8f0b00a4c7fc1e3beeda00 (patch) | |
tree | ba5e3ea3586f2e681b9737ba3f686ae6a4e2010d | |
parent | 2d867ce2e2f0cb8251e16f620a33312054270e8f (diff) |
Time out on TLS clients not closing the connection properly.
Patch by Fabian Mauchle.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | tls.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -12,6 +12,8 @@ crash when using dynamic discovery. Patch by Fabian Mauchle. - Closing and freeing TLS clients properly. Patch by Fabian Mauchle. + - Timing out on TLS clients not closing the connection properly. + Patch by Fabian Mauchle. 2012-10-25 1.6.2 Bug fixes (security): @@ -355,7 +355,7 @@ void tlsserverrd(struct client *client) { } for (;;) { - buf = radtlsget(client->ssl, 0); + buf = radtlsget(client->ssl, IDLE_TIMEOUT * 3); if (!buf) { debug(DBG_ERR, "tlsserverrd: connection from %s lost", addr2string(client->addr)); break; |