aboutsummaryrefslogtreecommitdiff
path: root/src/Config.h
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-02-27 18:32:23 -0500
committerfrosty <gabriel@bwaaa.monster>2026-02-27 18:32:23 -0500
commit9f2cd561286784fd000eb8a00f1f80db3185062c (patch)
tree14216b6d50b34bab1c7f7ae70d628d3560613f9e /src/Config.h
parent26e3403e039d1a80f2e62f8efe889ad5f40c8cee (diff)
downloadomnisearch-9f2cd561286784fd000eb8a00f1f80db3185062c.tar.gz
added proxying
Diffstat (limited to 'src/Config.h')
-rw-r--r--src/Config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Config.h b/src/Config.h
index 384ed94..d14dd6b 100644
--- a/src/Config.h
+++ b/src/Config.h
@@ -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);