X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Ftlsproxy.h;h=8b6f4fc5d5e71ac4c1d0967dd8a08bdace086c4f;hb=8901c257215d60e07dd12ad2dad8d2c9569892aa;hp=513964cc02381c15e6b81689d5377a1081846c9b;hpb=4aa2eea6b3115cab6f3165c4391d523d5df61e51;p=tlsproxy%2Ftlsproxy.git diff --git a/src/tlsproxy.h b/src/tlsproxy.h index 513964c..8b6f4fc 100644 --- a/src/tlsproxy.h +++ b/src/tlsproxy.h @@ -20,8 +20,24 @@ #ifndef TLSPROXY_H #define TLSPROXY_H +#include + +#include +#include +#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