// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #include "td/mtproto/IStreamTransport.h" #include "td/mtproto/HttpTransport.h" #include "td/mtproto/TcpTransport.h" namespace td { namespace mtproto { unique_ptr create_transport(TransportType type) { switch (type.type) { case TransportType::ObfuscatedTcp: return td::make_unique(type.dc_id, std::move(type.secret), type.emulate_tls); case TransportType::Tcp: return td::make_unique(); case TransportType::Http: return td::make_unique(type.secret); } UNREACHABLE(); } } // namespace mtproto } // namespace td