19 lines
633 B
C
19 lines
633 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.
|
|
*/
|
|
|
|
const char tor_proxy_url[256] = "127.0.0.1:9050"; /* socks proxy */
|
|
const char i2p_proxy_url[256] = "127.0.0.1:4444"; /* http proxy */
|
|
|
|
/* 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";
|
|
|