diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2005-07-06 21:44:08 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2005-07-06 21:44:08 +0000 |
commit | 6042483a0e9f5de0e2119ed473fe5e650bbec809 (patch) | |
tree | c9ab1081680cb8835bdf8680d7e527130926794c /src | |
parent | 51096e29442dbd463dfd455e326fcc0b1c3dc1aa (diff) | |
download | tinyproxy-6042483a0e9f5de0e2119ed473fe5e650bbec809.tar.gz tinyproxy-6042483a0e9f5de0e2119ed473fe5e650bbec809.zip |
Removed the proxy-* headers from the list of headers to skip. Since
tinyproxy does not prompt for any proxy information from the client, it
should not be eating the proxy headers. They are most likely needed by
an upstream proxy.
Diffstat (limited to 'src')
-rw-r--r-- | src/reqs.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: reqs.c,v 1.117 2004-08-24 16:35:27 rjkaes Exp $ +/* $Id: reqs.c,v 1.118 2005-07-06 21:44:08 rjkaes Exp $ * * This is where all the work in tinyproxy is actually done. Incoming * connections have a new child created for them. The child then @@ -1205,8 +1205,6 @@ process_client_headers(struct conn_s *connptr, hashmap_t hashofheaders) static char *skipheaders[] = { "host", "keep-alive", - "proxy-authenticate", - "proxy-authorization", "proxy-connection", "te", "trailers", |