init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
72
Telegram/SourceFiles/mtproto/connection_resolving.h
Normal file
72
Telegram/SourceFiles/mtproto/connection_resolving.h
Normal file
@@ -0,0 +1,72 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "mtproto/mtproto_auth_key.h"
|
||||
#include "mtproto/connection_abstract.h"
|
||||
#include "base/timer.h"
|
||||
|
||||
namespace MTP {
|
||||
namespace details {
|
||||
|
||||
class ResolvingConnection : public AbstractConnection {
|
||||
public:
|
||||
ResolvingConnection(
|
||||
not_null<Instance*> instance,
|
||||
QThread *thread,
|
||||
const ProxyData &proxy,
|
||||
ConnectionPointer &&child);
|
||||
|
||||
ConnectionPointer clone(const ProxyData &proxy) override;
|
||||
|
||||
crl::time pingTime() const override;
|
||||
crl::time fullConnectTimeout() const override;
|
||||
void sendData(mtpBuffer &&buffer) override;
|
||||
void disconnectFromServer() override;
|
||||
void connectToServer(
|
||||
const QString &address,
|
||||
int port,
|
||||
const bytes::vector &protocolSecret,
|
||||
int16 protocolDcId,
|
||||
bool protocolForFiles) override;
|
||||
bool isConnected() const override;
|
||||
|
||||
int32 debugState() const override;
|
||||
|
||||
QString transport() const override;
|
||||
QString tag() const override;
|
||||
|
||||
private:
|
||||
void setChild(ConnectionPointer &&child);
|
||||
bool refreshChild();
|
||||
void emitError(int errorCode);
|
||||
|
||||
void domainResolved(
|
||||
const QString &host,
|
||||
const QStringList &ips,
|
||||
qint64 expireAt);
|
||||
void handleError(int errorCode);
|
||||
void handleConnected();
|
||||
void handleDisconnected();
|
||||
void handleReceivedData();
|
||||
|
||||
not_null<Instance*> _instance;
|
||||
ConnectionPointer _child;
|
||||
bool _connected = false;
|
||||
int _ipIndex = -1;
|
||||
QString _address;
|
||||
int _port = 0;
|
||||
bytes::vector _protocolSecret;
|
||||
int16 _protocolDcId = 0;
|
||||
bool _protocolForFiles = false;
|
||||
base::Timer _timeoutTimer;
|
||||
|
||||
};
|
||||
|
||||
} // namespace details
|
||||
} // namespace MTP
|
||||
Reference in New Issue
Block a user