2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Use application level proxy settings.

This commit is contained in:
John Preston
2018-04-23 14:24:03 +04:00
parent a2606c4fc4
commit 4a9db99082
23 changed files with 182 additions and 209 deletions

View File

@@ -428,6 +428,12 @@ enum DBIConnectionType {
};
struct ProxyData {
enum class Type {
None,
Socks5,
Http,
};
Type type = Type::None;
QString host;
uint32 port = 0;
QString user, password;