aboutsummaryrefslogtreecommitdiffstats
path: root/libproxy
AgeCommit message (Collapse)AuthorFilesLines
2013-08-20libproxy: Do not compare expression against NULLDaniel Wagner1-21/+21
This patch generate via coccinelle with: @ disable is_null,isnt_null1 @ expression E; @@ ( - E == NULL + !E | - E != NULL + E )
2013-07-11libproxy: Remove useless outputTomasz Bursztyka1-4/+0
Fixes #CM-647
2013-06-17libproxy: Support slicing the result string into relevant listTomasz Bursztyka1-39/+87
Fixes BMC#26021
2011-08-24libproxy: Supports various SOCKS proxiesAlban Crequy1-0/+24
2011-08-24libproxy: Don't be case sensitive with the strings returned by PAC filesAlban Crequy1-2/+2
Be compatible with existing PAC files which return something like "proxy server:port". They work on Windows but they would not work if pacrunner was case-sensitive.
2011-05-29libproxy: Mark variable as unusedMarcel Holtmann1-1/+1
2011-01-01core: Update copyright informationMarcel Holtmann2-2/+2
2010-12-10libproxy: Free scheme string sooner, now it's not needed in extract_result()David Woodhouse1-7/+4
2010-11-23libproxy: Always return PROXY result as http:// URLDavid Woodhouse1-2/+2
Using the scheme of the original requested URL is wrong; the fact that we're going to use our proxy to access an external https server does *not* mean we connect to the proxy using SSL.
2010-10-09Add simple libproxy implementationMarcel Holtmann3-0/+230