| 1960 | |
| 1961 | private: |
| 1962 | void StartAccept(TTcpAcceptor* a) { |
| 1963 | TAtomicSharedPtr<TTcpSocket> s(new TTcpSocket(E_.Size() ? E_.GetExecutor().GetIOService() : AcceptExecutor_.GetIOService())); |
| 1964 | a->AsyncAccept(*s, std::bind(&THttpServer::OnAccept, this, a, s, _1, _2)); |
| 1965 | } |
| 1966 | |
| 1967 | TIOServiceExecutor AcceptExecutor_; |
| 1968 | TVector<TTcpAcceptorPtr> A_; |
nothing calls this directly
no test coverage detected