| 820 | class TContBIO : public NOpenSSL::TAbstractIO { |
| 821 | public: |
| 822 | TContBIO(SOCKET s, const TAtomicBool* canceled = nullptr) |
| 823 | : Timeout_(TDuration::MicroSeconds(10000)) |
| 824 | , S_(s) |
| 825 | , Canceled_(canceled) |
| 826 | , Cont_(nullptr) |
| 827 | { |
| 828 | } |
| 829 | |
| 830 | SOCKET Socket() { |
| 831 | return S_; |
nothing calls this directly
no test coverage detected