summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-06-15 17:29:59 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-06-15 17:29:59 +0000
commitfb688a2077db8044e7f8621ec7c5c29bf72e3935 (patch)
tree7134dcea8fb1504abe41d85d0bd2a500ea8c0f0c /src
parent2f84b170a6d8a5ce76bf0d8f19848361b319080f (diff)
downloadtinyproxy-fb688a2077db8044e7f8621ec7c5c29bf72e3935.tar.gz
tinyproxy-fb688a2077db8044e7f8621ec7c5c29bf72e3935.zip
Removed the "logf" FILE structure from the config structure, and also renamed the "log_rotation_request" boolean to "received_sighup".
Diffstat (limited to '')
-rw-r--r--src/tinyproxy.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 66f7699..66afe91 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.32 2002-05-27 01:59:28 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.33 2002-06-15 17:29:59 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -26,7 +26,6 @@
#define MAX_IDLE_TIME (60 * 10) /* 10 minutes of no activity */
struct config_s {
- FILE *logf;
char *logf_name;
bool_t syslog;
int port;
@@ -61,7 +60,7 @@ struct config_s {
/* Global Structures used in the program */
extern struct config_s config;
-extern bool_t log_rotation_request;
+extern bool_t received_sighup;
extern bool_t processed_config_file;
#endif