summaryrefslogtreecommitdiff
path: root/lib/url.c
Commit message (Expand)AuthorAgeFilesLines
* libcurl: New options to bind DNS to local interfaces or IP addressesKim Vandry2013-09-091-0/+9
* Curl_setopt: refuse CURL_HTTP_VERSION_2_0 if built without supportDaniel Stenberg2013-09-041-1/+6
* url.c: Fixed compilation warningSteve Holme2013-09-011-3/+4
* options: added basic SASL XOAUTH2 supportKyle L. Huff2013-08-251-0/+15
* FTP: remove krb4 supportDaniel Stenberg2013-08-251-1/+1
* url: handle arbitrary-length username and password before '@'Jonathan Nieder2013-08-201-24/+21
* url: handle exceptional cases first in parse_url_login()Jonathan Nieder2013-08-201-62/+59
* Curl_setopt: handle arbitrary-length username and passwordJonathan Nieder2013-08-201-10/+19
* netrc: handle longer username and passwordJonathan Nieder2013-08-201-9/+9
* url: allocate username, password, and options on the heapJonathan Nieder2013-08-201-3/+14
* url: use goto in create_conn() for exception handlingJonathan Nieder2013-08-201-27/+40
* cleanup: removed one function, made one staticDaniel Stenberg2013-08-121-4/+0
* SessionHandle: the protocol specific pointer is now a void *Daniel Stenberg2013-08-121-6/+13
* urldata: clean up the use of the protocol specific structsDaniel Stenberg2013-08-121-39/+53
* FTP: when EPSV gets a 229 but fails to connect, retry with PASVDaniel Stenberg2013-08-061-4/+6
* multi: remove data->state.current_conn struct fieldDaniel Stenberg2013-08-031-6/+4
* string formatting: fix 15+ printf-style format stringsYang Tse2013-07-241-1/+1
* string formatting: fix 25+ printf-style format stringsYang Tse2013-07-241-4/+5
* url.c: Fix dot file path cleanup when using an HTTP proxyFabian Keil2013-07-231-2/+7
* CURLOPT_XFERINFOFUNCTION: introducing a new progress callbackDaniel Stenberg2013-07-181-0/+12
* OS400: new SSL backend GSKitPatrick Monnerat2013-07-151-1/+1
* x509asn1.c,x509asn1.h: new module to support ASN.1/X509 parsing & info extractPatrick Monnerat2013-07-151-0/+2
* url.c: fix parse_url_login() OOM handlingYang Tse2013-07-141-3/+15
* url.c: fix parse_login_details() OOM handlingYang Tse2013-07-121-2/+7
* url.c: fix SIGSEGVYang Tse2013-07-111-0/+2
* url: restore the functionality of 'curl -u :'Kamil Dudka2013-06-301-0/+7
* dotdot: introducing dot file path cleanupDaniel Stenberg2013-06-221-10/+26
* CURLOPT_COOKIELIST: take cookie share lockDaniel Stenberg2013-06-171-18/+21
* sasl-ir: Added CURLOPT_SASL_IR to enable/disable the SASL initial responseSteve Holme2013-04-271-1/+8
* url: initialize speed-check data for file:// protocolZdenek Pavlas2013-04-261-0/+3
* url: Added smtp and pop3 hostnames to the protocol detection listSteve Holme2013-04-231-0/+4
* url: Fixed missing length check in parse_proxy()Steve Holme2013-04-211-2/+2
* url: Fixed crash when no username or password supplied for proxySteve Holme2013-04-211-2/+8
* url: Updated proxy URL parsing to use parse_login_details()Steve Holme2013-04-211-13/+13
* url: Tidy up of setstropt_userpwd() parametersSteve Holme2013-04-211-14/+14
* url: Tidy up of code and comments following recent changesSteve Holme2013-04-211-42/+42
* url: Simplified setstropt_userpwd() following recent changesSteve Holme2013-04-201-23/+7
* url: Correction to scope of if statements when setting dataSteve Holme2013-04-201-3/+6
* url: Fixed memory leak in setstropt_userpwd()Steve Holme2013-04-201-3/+6
* url: Added overriding of URL login options from CURLOPT_USERPWDSteve Holme2013-04-201-14/+17
* url: Added support for parsing login options from the CURLOPT_USERPWDSteve Holme2013-04-201-28/+38
* url: Added bounds checking to parse_login_details()Steve Holme2013-04-191-2/+12
* url: Added size_t cast to pointer based length calculationsSteve Holme2013-04-191-2/+4
* url: Corrected minor typo in commentSteve Holme2013-04-191-1/+1
* url: Fix chksrc longer than 79 columns warningSteve Holme2013-04-181-1/+2
* url: Fix incorrect variable type for result codeSteve Holme2013-04-181-1/+1
* url: Fix compiler warningSteve Holme2013-04-181-2/+2
* url: Moved parsing of login details out of parse_url_login()Steve Holme2013-04-181-60/+158
* url: Re-factored set_userpass() and parse_url_userpass()Steve Holme2013-04-181-18/+23
* url: Reworked URL parsing to allow overriding by CURLOPT_USERPWDSteve Holme2013-04-181-19/+31