80c35676a2
GitOrigin-RevId: 09afb551b6e637dc69739fa735b0051a38b9e14c
29 lines
895 B
C++
29 lines
895 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
|
//
|
|
// 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<IStreamTransport> create_transport(TransportType type) {
|
|
switch (type.type) {
|
|
case TransportType::ObfuscatedTcp:
|
|
return td::make_unique<tcp::ObfuscatedTransport>(type.dc_id, std::move(type.secret));
|
|
case TransportType::Tcp:
|
|
return td::make_unique<tcp::OldTransport>();
|
|
case TransportType::Http:
|
|
return td::make_unique<http::Transport>(type.secret.get_raw_secret().str());
|
|
}
|
|
UNREACHABLE();
|
|
}
|
|
|
|
} // namespace mtproto
|
|
} // namespace td
|