feature: added caching

This commit is contained in:
frosty
2026-03-10 03:40:34 -04:00
parent a11bf8bb6c
commit e33310f263
8 changed files with 185 additions and 18 deletions

View File

@@ -9,6 +9,9 @@ typedef struct {
int max_proxy_retries;
int randomize_username;
int randomize_password;
char cache_dir[512];
int cache_ttl_search;
int cache_ttl_infobox;
} Config;
int load_config(const char *filename, Config *config);