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
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
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
|
|
*/
|
|
#pragma once
|
|
|
|
namespace MTP {
|
|
|
|
struct ProxyData {
|
|
enum class Settings {
|
|
System,
|
|
Enabled,
|
|
Disabled,
|
|
};
|
|
enum class Type {
|
|
None,
|
|
Socks5,
|
|
Http,
|
|
Mtproto,
|
|
};
|
|
enum class Status {
|
|
Valid,
|
|
Unsupported,
|
|
IncorrectSecret,
|
|
Invalid,
|
|
};
|
|
|
|
Type type = Type::None;
|
|
QString host;
|
|
uint32 port = 0;
|
|
QString user, password;
|
|
|
|
std::vector<QString> resolvedIPs;
|
|
crl::time resolvedExpireAt = 0;
|
|
|
|
[[nodiscard]] bool valid() const;
|
|
[[nodiscard]] Status status() const;
|
|
[[nodiscard]] bool supportsCalls() const;
|
|
[[nodiscard]] bool tryCustomResolve() const;
|
|
[[nodiscard]] bytes::vector secretFromMtprotoPassword() const;
|
|
[[nodiscard]] explicit operator bool() const;
|
|
[[nodiscard]] bool operator==(const ProxyData &other) const;
|
|
[[nodiscard]] bool operator!=(const ProxyData &other) const;
|
|
|
|
[[nodiscard]] static bool ValidMtprotoPassword(const QString &password);
|
|
[[nodiscard]] static Status MtprotoPasswordStatus(
|
|
const QString &password);
|
|
|
|
};
|
|
|
|
[[nodiscard]] ProxyData ToDirectIpProxy(
|
|
const ProxyData &proxy,
|
|
int ipIndex = 0);
|
|
[[nodiscard]] QNetworkProxy ToNetworkProxy(const ProxyData &proxy);
|
|
|
|
} // namespace MTP
|