| 1170 | class TConnection: public TThrRefBase { |
| 1171 | private: |
| 1172 | TConnection(TServer& srv, const TTcpSocketRef& sock) |
| 1173 | : Srv_(srv) |
| 1174 | , AS_(sock) |
| 1175 | , Canceled_(false) |
| 1176 | , RemoteHost_(NNeh::PrintHostByRfc(*AS_->RemoteEndpoint().Addr())) |
| 1177 | , BuffSize_(TTcp2Options::InputBufferSize) |
| 1178 | , Buff_(new char[BuffSize_]) |
| 1179 | , NeedCheckOutputQueue_(false) |
| 1180 | { |
| 1181 | DBGOUT("TServer::TConnection()"); |
| 1182 | } |
| 1183 | |
| 1184 | public: |
| 1185 | class TOutputBuffers: public TMultiBuffers { |
nothing calls this directly
no test coverage detected