| 44 | }; |
| 45 | |
| 46 | THttpServerConn::THttpServerConn(const TSocket& s) |
| 47 | : THttpServerConn(s, s.MaximumTransferUnit()) |
| 48 | { |
| 49 | } |
| 50 | |
| 51 | THttpServerConn::THttpServerConn(const TSocket& s, size_t outputBufferSize) |
| 52 | : Impl_(new TImpl(s, outputBufferSize)) |
nothing calls this directly
no test coverage detected