summaryrefslogtreecommitdiffhomepage
path: root/src/tinyproxy.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-24 16:45:45 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-04-24 16:45:45 +0000
commit89ada2df2841db06ac71ea3a62ec6af0ea112a08 (patch)
treecc8ce95a07f5c2eeb45d7231f5d22915e0846cbe /src/tinyproxy.h
parente7c7c91d7140cf6fb7dd07b1446b801e0eee289e (diff)
Moved bind_address inside the config structure.
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r--src/tinyproxy.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 797c066..df0cf3d 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.29 2002-04-22 19:34:20 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.30 2002-04-24 16:45:45 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -213,13 +213,12 @@ struct config_s {
#endif /* UPSTREAM_SUPPORT */
char *pidpath;
unsigned int idletimeout;
-
+ char* bind_address;
};
/* Global Structures used in the program */
extern struct config_s config;
extern bool_t log_rotation_request;
-extern char* bind_address;
extern bool_t processed_config_file;
#endif