1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-05 08:36:47 +02:00

allow connections through proxies

This commit is contained in:
Jfreegman
2014-08-14 20:31:52 -04:00
parent edbdf2966a
commit 72010dd2e1
3 changed files with 35 additions and 7 deletions

View File

@ -78,9 +78,14 @@ struct arg_opts {
int default_locale;
int use_custom_data;
int no_connect;
char dns_path[MAX_STR_SIZE];
char config_path[MAX_STR_SIZE];
char nodes_path[MAX_STR_SIZE];
int use_proxy;
char proxy_address[256];
uint16_t proxy_port;
};
typedef struct ToxWindow ToxWindow;