A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Revision:
24:cb43290fc439
Parent:
23:e93d5529b7a6
--- a/tls/tls-response.c	Mon Oct 28 08:18:57 2019 +0000
+++ b/tls/tls-response.c	Wed Apr 01 12:48:52 2020 +0000
@@ -260,13 +260,13 @@
     if (!pConnection)
     {
         *pWindowSize = 0;
-        return false;     //Ignore empty connections in poll
+        return clientFinished;     //Ignore empty connections in poll
     }
     
     if (!pConnection->sessionId)
     {
         *pWindowSize = 0;
-        return false;     //Ignore empty sessions in poll
+        return clientFinished;     //Ignore empty sessions in poll
     }
     
     struct TlsSession* pSession = TlsSessionOrNull(pConnection->sessionId);