added proxying

This commit is contained in:
frosty
2026-02-27 18:32:23 -05:00
parent 26e3403e03
commit 9f2cd56128
13 changed files with 416 additions and 17 deletions

View File

@@ -4,6 +4,11 @@
typedef struct {
char host[256];
int port;
char proxy[256];
char proxy_list_file[256];
int max_proxy_retries;
int randomize_username;
int randomize_password;
} Config;
int load_config(const char *filename, Config *config);