| 120 | } |
| 121 | |
| 122 | void HTTPSClientEx::onHandshaked() |
| 123 | { |
| 124 | HTTPSClient::onHandshaked(); |
| 125 | |
| 126 | // Send prepared HTTP request on connect |
| 127 | if (!_request.empty() && !_request.error()) |
| 128 | if (!SendRequestAsync()) |
| 129 | SetPromiseError("Failed to send HTTP request!"); |
| 130 | } |
| 131 | |
| 132 | void HTTPSClientEx::onDisconnected() |
| 133 | { |