summaryrefslogtreecommitdiffhomepage
path: root/src/tinyproxy.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2000-03-31 20:08:19 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2000-03-31 20:08:19 +0000
commit0edeabbd63b5524ee27a8123015f08a477e6929c (patch)
tree8fa8f481cfd3cf0d014db33858d1a7eb25b0acd8 /src/tinyproxy.h
parentb1e97bd24f5796d12f8afc3e1c28da2a7e68054e (diff)
Removed the allowedhdr_s structure since it is now accessed through
anonymous.*
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r--src/tinyproxy.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 22630a7..041c80f 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.2 2000-03-11 20:37:44 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.3 2000-03-31 20:08:19 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -77,15 +77,9 @@ struct stat_s {
unsigned long int num_refused;
};
-struct allowedhdr_s {
- char *hdrname;
- struct allowedhdr_s *next;
-};
-
/* Global Structures used in the program */
extern struct config_s config;
extern struct stat_s stats;
-extern struct allowedhdr_s *allowedhdrs;
extern float load;
#endif