| 64 | }; |
| 65 | |
| 66 | td::actor::StartedTask<td::Unit> proxy(td::Slice name, td::Pipe left, td::Pipe right) { |
| 67 | return td::spawn_task_actor<ProxyWorker>(PSLICE() << "ProxyWorker" << name, std::move(left), std::move(right)); |
| 68 | } |
| 69 | |
| 70 | class TlsPipeWorker : public td::actor::Actor { |
| 71 | public: |
no outgoing calls
no test coverage detected