/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "mtproto/details/mtproto_abstract_socket.h" #include "mtproto/details/mtproto_tcp_socket.h" #include "mtproto/details/mtproto_tls_socket.h" namespace MTP::details { std::unique_ptr AbstractSocket::Create( not_null thread, const bytes::vector &secret, const QNetworkProxy &proxy) { if (secret.size() >= 21 && secret[0] == bytes::type(0xEE)) { return std::make_unique(thread, secret, proxy); } else { return std::make_unique(thread, proxy); } } } // namespace MTP::details