| 57 | } |
| 58 | |
| 59 | void HTTPSSession::onDisconnected() |
| 60 | { |
| 61 | // Receive HTTP request body |
| 62 | if (_request.IsPendingBody()) |
| 63 | { |
| 64 | onReceivedRequestInternal(_request); |
| 65 | _request.Clear(); |
| 66 | return; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | void HTTPSSession::onReceivedRequestInternal(const HTTPRequest& request) |
| 71 | { |
nothing calls this directly
no test coverage detected