summaryrefslogtreecommitdiff
path: root/src/tinyproxy.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2005-08-16 04:03:19 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2005-08-16 04:03:19 +0000
commit4c58663041dbfdb751066da695af95e3aa83cbe7 (patch)
treede83968499735e7ed5ad2959e7b959a08ec9c167 /src/tinyproxy.h
parent808bdbd1e9eab8e4fcd925442495d019b67f0b5a (diff)
downloadtinyproxy-4c58663041dbfdb751066da695af95e3aa83cbe7.tar.gz
tinyproxy-4c58663041dbfdb751066da695af95e3aa83cbe7.zip
* [Refactor] Moved Reverse Proxy Code
Moved the reverse proxy code from reqs.c into it's own files (reverse_proxy.c). The code in reqs.c is way too complicated, so I want to move unrelated code into their own files to simplify the main concepts in reqs.c.
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r--src/tinyproxy.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 4cb091c..5e14857 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.47 2005-08-15 03:54:31 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.48 2005-08-16 04:03:19 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -38,16 +38,6 @@ struct upstream {
in_addr_t ip, mask;
};
-#ifdef REVERSE_SUPPORT
-struct reversepath {
- struct reversepath *next;
- char *path;
- char *url;
-};
-
-#define REVERSE_COOKIE "yummy_magical_cookie"
-#endif
-
/*
* Hold all the configuration time information.
*/