tdesktop/Telegram/SourceFiles/mtproto/special_config_request.h

49 lines
1.1 KiB
C
Raw Normal View History

2017-06-26 17:38:16 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2017-06-26 17:38:16 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2017-06-26 17:38:16 +00:00
*/
#pragma once
namespace MTP {
class SpecialConfigRequest : public QObject {
public:
SpecialConfigRequest(
base::lambda<void(
DcId dcId,
const std::string &ip,
int port)> callback);
2017-06-26 17:38:16 +00:00
~SpecialConfigRequest();
private:
void performApp1Request();
void performApp2Request();
2017-06-26 17:38:16 +00:00
void performDnsRequest();
void app1Finished();
void app2Finished();
2017-06-26 17:38:16 +00:00
void dnsFinished();
void handleResponse(const QByteArray &bytes);
bool decryptSimpleConfig(const QByteArray &bytes);
base::lambda<void(
DcId dcId,
const std::string &ip,
int port)> _callback;
2017-06-26 17:38:16 +00:00
MTPhelp_ConfigSimple _simpleConfig;
QNetworkAccessManager _manager;
std::unique_ptr<QNetworkReply> _app1Reply;
std::unique_ptr<QNetworkReply> _app2Reply;
2017-06-26 17:38:16 +00:00
std::unique_ptr<QNetworkReply> _dnsReply;
std::unique_ptr<DcOptions> _localOptions;
std::unique_ptr<Instance> _localInstance;
};
} // namespace MTP