X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Ftlsproxy.h;h=8b6f4fc5d5e71ac4c1d0967dd8a08bdace086c4f;hb=8901c257215d60e07dd12ad2dad8d2c9569892aa;hp=a0db68fd0726f9674014c1d3f2fd5106e553c445;hpb=643caf202af98fa5ebe83f642db459a04067e92f;p=tlsproxy%2Ftlsproxy.git diff --git a/src/tlsproxy.h b/src/tlsproxy.h index a0db68f..8b6f4fc 100644 --- a/src/tlsproxy.h +++ b/src/tlsproxy.h @@ -27,8 +27,17 @@ #include +/* Log level constants. */ +#define LOG_ERROR 0 +#define LOG_WARNING 1 +#define LOG_DEBUG 2 + + /* Proxy hostname and port if specified on the command line. */ -char *use_proxy_host; -char *use_proxy_port; +char *global_proxy_host; +char *global_proxy_port; + +/* Log level, command line option. */ +int global_log_level; #endif