| 13 | namespace HTTP { |
| 14 | |
| 15 | HTTPSSession::HTTPSSession(const std::shared_ptr<HTTPSServer>& server) |
| 16 | : Asio::SSLSession(server), |
| 17 | _cache(server->cache()) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | void HTTPSSession::onReceived(const void* buffer, size_t size) |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected