summaryrefslogtreecommitdiff
path: root/lib/socks.h
Commit message (Collapse)AuthorAgeFilesLines
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* - Markus Moeller introduced two new options to libcurl:Daniel Stenberg2009-01-281-1/+23
| | | | | | | CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl to do GSS-style authentication with SOCKS5 proxies. The curl tool got the options called --socks5-gssapi-service and --socks5-gssapi-nec to enable these.
* Richard Atterer brought a patch that added support for SOCKS4a proxies, whichDaniel Stenberg2008-01-021-3/+4
| | | | | | | is an inofficial PROXY4 variant that sends the hostname to the proxy instead of the resolved address (which is already supported by SOCKS5). --socks4a is the curl command line option for it and CURLOPT_PROXYTYPE can now be set to CURLPROXY_SOCKS4A as well.
* Fixed some minor type mismatches and missing consts mainly found by splint.Dan Fandrich2007-08-271-2/+2
|
* update copyright yearYang Tse2007-04-031-1/+1
|
* - Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 andDaniel Stenberg2007-02-191-0/+6
| | | | 5).
* standard curl source code headersDaniel Stenberg2006-09-231-0/+22
|
* Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better asDaniel Stenberg2006-09-231-0/+19
it now will read the full data sent from servers. The SOCKS-related code was also moved to the new lib/socks.c source file.