| 26 | namespace Mona { |
| 27 | |
| 28 | HTTPWriter::HTTPWriter(TCPSession& session) : _pSetCookieBuffer(session.invoker.poolBuffers),_requestCount(0),_requesting(false),_session(session),_pThread(NULL),Writer(session.peer.connected ? OPENED : OPENING) { |
| 29 | } |
| 30 | |
| 31 | void HTTPWriter::close(const Exception& ex) { |
| 32 | int code(500); |
nothing calls this directly
no outgoing calls
no test coverage detected