| 16 | namespace tc |
| 17 | { |
| 18 | FileTransferChannel::FileTransferChannel(const std::shared_ptr<ClientContext> &ctx) { |
| 19 | context_ = ctx; |
| 20 | sender_thread_ = Thread::Make("file transfer", 64); |
| 21 | sender_thread_->Poll(); |
| 22 | settings_ = Settings::Instance(); |
| 23 | } |
| 24 | |
| 25 | void FileTransferChannel::Start() { |
| 26 | client_ = std::make_shared<asio2::ws_client>(); |
nothing calls this directly
no outgoing calls
no test coverage detected