diff options
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r-- | src/tinyproxy.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h index fe73da7..2d4a187 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -26,8 +26,8 @@ #include "hashmap.h" /* Global variables for the main controls of the program */ -#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */ -#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */ +#define MAXBUFFSIZE ((size_t)(1024 * 96)) /* Max size of buffer */ +#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */ /* * Even if upstream support is not compiled into tinyproxy, this @@ -36,7 +36,7 @@ struct upstream { struct upstream *next; - char *domain; /* optional */ + char *domain; /* optional */ char *host; int port; in_addr_t ip, mask; @@ -49,31 +49,31 @@ struct config_s { char *logf_name; char *config_file; - unsigned int syslog; /* boolean */ + unsigned int syslog; /* boolean */ int port; char *stathost; - unsigned int quit; /* boolean */ + unsigned int quit; /* boolean */ char *user; char *group; char *ipAddr; #ifdef FILTER_ENABLE char *filter; - unsigned int filter_url; /* boolean */ - unsigned int filter_extended; /* boolean */ - unsigned int filter_casesensitive; /* boolean */ -#endif /* FILTER_ENABLE */ + unsigned int filter_url; /* boolean */ + unsigned int filter_extended; /* boolean */ + unsigned int filter_casesensitive; /* boolean */ +#endif /* FILTER_ENABLE */ #ifdef XTINYPROXY_ENABLE char *my_domain; #endif #ifdef REVERSE_SUPPORT struct reversepath *reversepath_list; - unsigned int reverseonly; /* boolean */ - unsigned int reversemagic; /* boolean */ + unsigned int reverseonly; /* boolean */ + unsigned int reversemagic; /* boolean */ char *reversebaseurl; #endif #ifdef UPSTREAM_SUPPORT struct upstream *upstream_list; -#endif /* UPSTREAM_SUPPORT */ +#endif /* UPSTREAM_SUPPORT */ char *pidpath; unsigned int idletimeout; char *bind_address; @@ -103,7 +103,7 @@ struct config_s /* Global Structures used in the program */ extern struct config_s config; -extern unsigned int received_sighup; /* boolean */ -extern unsigned int processed_config_file; /* boolean */ +extern unsigned int received_sighup; /* boolean */ +extern unsigned int processed_config_file; /* boolean */ #endif |