We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cd0258 commit 7554107Copy full SHA for 7554107
src/tls/BearSSLClient.h
@@ -100,6 +100,11 @@ class BearSSLClient : public Client {
100
br_x509_certificate _ecCert;
101
bool _ecCertDynamic;
102
103
+ /* FIXME By introducing _sslio_closing we are overriding the correct behaviour of SSL protocol
104
+ * where the client is require to correctly close the ssl session. In the way we use it
105
+ * we are blocking bearssl from sending any data on the underlying level, this fix requires
106
+ * further investigation in the bearssl code
107
+ */
108
bool _sslio_closing;
109
br_ssl_client_context _sc;
110
br_x509_minimal_context _xc;
0 commit comments