| 20 | |
| 21 | |
| 22 | HTTPServerSession::HTTPServerSession(const StreamSocket & socket, HTTPServerParams::Ptr pParams) |
| 23 | : HTTPSession(socket, pParams->getKeepAlive()) |
| 24 | , _firstRequest(true) |
| 25 | , _keepAliveTimeout(pParams->getKeepAliveTimeout()) |
| 26 | , _maxKeepAliveRequests(pParams->getMaxKeepAliveRequests()) |
| 27 | { |
| 28 | setTimeout(pParams->getTimeout()); |
| 29 | } |
| 30 | |
| 31 | |
| 32 | HTTPServerSession::~HTTPServerSession() |
nothing calls this directly
no test coverage detected