summaryrefslogtreecommitdiffhomepage
path: root/src/tinyproxy.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2003-06-02 21:55:14 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2003-06-02 21:55:14 +0000
commit91e082671a22cf9e5c5781d470955c7e92a4d238 (patch)
tree996fc2f144b898bff7427475f7c58357e9f6a406 /src/tinyproxy.h
parentea50171a95fbb87710615682bdf2974853a42211 (diff)
(upstream_get):
(upstream_add): Added support to allow ip addresses and networks to be used when matching an upstream proxy directive. [Code by Peter da Silva]
Diffstat (limited to 'src/tinyproxy.h')
-rw-r--r--src/tinyproxy.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 0e8ee59..1c21762 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.39 2003-05-29 19:43:57 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.40 2003-06-02 21:55:14 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -31,6 +31,7 @@ struct upstream {
char *domain; /* optional */
char *host;
int port;
+ in_addr_t ip, mask;
};
#endif