| 653 | class TTcpProtocol: public IProtocol { |
| 654 | public: |
| 655 | inline TTcpProtocol() { |
| 656 | InitNetworkSubSystem(); |
| 657 | } |
| 658 | |
| 659 | IRequesterRef CreateRequester(IOnRequest* cb, const TParsedLocation& loc) override { |
| 660 | return new TServer(cb, loc.GetPort()); |
nothing calls this directly
no test coverage detected