sakisafe/clainsafecli/options.h
qorg11 50a2682cab
Removed tor and I2P flags, repleaced by --socks-proxy and --httproxy
which both take them a full address (127.0.0.1:9050 for example)
2021-05-20 13:56:23 +02:00

19 lines
575 B
C

/* clainsafecli options */
/* Default server you'll upload files to */
char *server = "https://lainsafe.kalli.st";
/* proxy urls, socks and http. in that order, by default they're
* configured to be used for tor and i2p, but if you have another
* socks/http proxy, you can set it here.
*/
int socks_proxy_port = 9050; /* Tor */
int http_proxy_port = 4444; /* I2P */
/* Enable "history" files and where to store that file */
char history_file_path[256];
const int enable_links_history = 1;
const char *path = ".cache/lainsafelinks";