31 lines
		
	
	
	
		
			859 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			859 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| 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> AbstractSocket::Create(
 | |
| 		not_null<QThread*> thread,
 | |
| 		const bytes::vector &secret,
 | |
| 		const QNetworkProxy &proxy,
 | |
| 		bool protocolForFiles) {
 | |
| 	if (secret.size() >= 21 && secret[0] == bytes::type(0xEE)) {
 | |
| 		return std::make_unique<TlsSocket>(
 | |
| 			thread,
 | |
| 			secret,
 | |
| 			proxy,
 | |
| 			protocolForFiles);
 | |
| 	} else {
 | |
| 		return std::make_unique<TcpSocket>(thread, proxy, protocolForFiles);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| } // namespace MTP::details
 | 
