summaryrefslogtreecommitdiff
path: root/src/transparent-proxy.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2010-12-01[BB#95] Fix FilterURLs with transparent proxy support.Daniel Egger1-1/+1
Pass a pointer to a char pointer to do_transparent_proxy so the reassembled URL will actually end up back in the caller where it is needed for filtering decisions. This fixes the problem that a tinyproxy configured with the transparent proxy functionality and "FilterURLs Yes" would filter on everything but the domain. Signed-off-by: daniel.egger@sphairon.com Signed-off-by: Michael Adam <obnox@samba.org>
2009-09-15Indent code to Tinyproxy coding styleMukund Sivaraman1-1/+0
The modified files were indented with GNU indent using the following command: indent -npro -kr -i8 -ts8 -sob -l80 -ss -cs -cp1 -bs -nlps -nprs -pcs \ -saf -sai -saw -sc -cdw -ce -nut -il0 No other changes of any sort were made.
2008-12-08Convert tabs to spacesMukund Sivaraman1-3/+3
2008-12-01Reformat code to GNU coding styleMukund Sivaraman1-3/+4
This is a commit which simply ran all C source code files through GNU indent. No other modifications were made.
2008-06-09Moved transparent proxy code into its own fileRobert James Kaes1-0/+39
Extracted the transparent proxy logic from reqs.c and placed it into a separate file. Signed-off-by: Robert James Kaes <rjk@wormbytes.ca>