| 226 | } |
| 227 | |
| 228 | td::actor::ActorOwn<TcpClient> TcpClient::create(std::unique_ptr<Callback> callback) { |
| 229 | auto res = td::actor::create_actor<TcpClientImpl>("extclient", std::move(callback)); |
| 230 | return res; |
| 231 | } |
| 232 | |
| 233 | void TcpClientImpl::add_connection_to_remote_app_type_rule(const RemoteAppType &remote_app_type, |
| 234 | std::shared_ptr<TcpConnectionType> type) { |
nothing calls this directly
no outgoing calls
no test coverage detected