MCPcopy Create free account
hub / github.com/catboost/catboost / TConnection

Method TConnection

library/cpp/neh/tcp2.cpp:1172–1182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 2

RemoteEndpointMethod · 0.80
AddrMethod · 0.45

Tested by

no test coverage detected