aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
AgeCommit message (Collapse)Author
2002-10-28kromJx@crosswinds.net's fix that now uses checkprefix() instead ofDaniel Stenberg
strnequal() when the third argument was strlen(first argument) anyway. This makes it less prone to errors. (Slightly edited by me)
2002-10-28prevent compiler warningsDaniel Stenberg
2002-10-17Make the COOKIESESSION work better by creating a list of cookie files filesDaniel Stenberg
when given in the curl_easy_setopt() and then parse them all on the first curl_easy_perform() call instead.
2002-10-10Jeff Lawson fixed a few problems with connection re-use that remained whenDaniel Stenberg
you set CURLOPT_PROXY to "".
2002-09-27Allow a "" proxy explicitly set dont-use-proxy, i.e don't even check theDaniel Stenberg
environment variables or anything. Setting it to NULL disables proxy as well, but allows the environment variables to kick in and be used.
2002-09-25Andrés García found out that Curl_protocol_connect() could return anDaniel Stenberg
uninitialized variable.
2002-09-25Wez Furlong's curl_version_info() function added, still needs someDaniel Stenberg
adjustments and possibly some improvments to feature all those things we could possibly want from this.
2002-09-11Lukasz Czekierda correctly pointed out that curl used a bad Host: headerDaniel Stenberg
when talking to a IPv6-server using IPv6 IP address only.
2002-09-09minor indent changeDaniel Stenberg
2002-09-03updated source code boilerplate/headerDaniel Stenberg
2002-09-02James Gallagher's Content-Encoding workDaniel Stenberg
2002-08-30CURLE_SSL_INSECURE is removed again and so is CURLOPT_SSL_INSECURE, weDaniel Stenberg
proceed fine with the already existing options, just having a different internal library default for capath.
2002-08-30SOCKS5 support added (contributed by a still unnamed person). Not properlyDaniel Stenberg
working for "IPv6 enabled" libcurls yet, but should be pretty easy for someone to adjust.
2002-08-26SSL_INSECURE support and usage addedDaniel Stenberg
2002-08-26Andrew Francis removed the need for/use of MSVC pragmasDaniel Stenberg
2002-08-13Sterling Hughes brings the share interfaceDaniel Stenberg
2002-08-12Initial fix to make the multi interface return control while waiting forDaniel Stenberg
the initial connect to "come through". This should work fine for connect and for FTP-PASV connects. Needs massive testing.
2002-08-08Markus F.X.J. Oberhumer's CURLOPT_NOSIGNAL patchDaniel Stenberg
2002-08-05re-added the RFC2732-parser that was lost for some reason during the flowDaniel Stenberg
of time!
2002-07-29Removed checks for if set.fpasswd is NULL, as we prevent users from settingDaniel Stenberg
it to NULL and then use the internal default instead. It will always be a function to call.
2002-06-15CURLOPT_BUFFERSIZE allows an application to set a prefered buffer sizeDaniel Stenberg
for receiving data from the network. It is meant as a hint, not as a forced limit.
2002-06-14- Yarram Sunil found out that the SocketIsDead() function performed a lotDaniel Stenberg
faster on Windows when removing the 1 microsecond timeout.
2002-06-11put #ifdefs around the sigjmp_buf declaration too, as it should beDaniel Stenberg
2002-06-11corrected the signal handlerDaniel Stenberg
2002-06-11Now uses sigsetjmp() and siglongjmp() to bail out from slow name lookups inDaniel Stenberg
case a timeout is set. This seems to work. God knows if it is good enough or what kind of side-effects we introduce here and now. I'll close my eyes and cross my fingers. Hard.
2002-06-11removed accidentally added debug-code!Daniel Stenberg
2002-06-11added disable-[protocol] support, largely provided by Miklos NemethDaniel Stenberg
2002-05-28Cris Bailiff's CAPATH support addedDaniel Stenberg
2002-05-21When re-using a connection, make sure that we use the current host name asDaniel Stenberg
we might actually re-use a connection to a different host, when using proxies! This was what bug report #558888 was all about.
2002-05-21James Cone's efforts to add another netrc parsing "mode"Daniel Stenberg
2002-05-07support for ingoring session cookies addedDaniel Stenberg
2002-05-06the code for case CURLOPT_DEBUGDATA code broke the CURLOPT_STDERR one!Daniel Stenberg
2002-04-25prevent persistant connections to do name resolvesDaniel Stenberg
2002-04-25In order to not get problems with DNS cache pruning, we no longer storeDaniel Stenberg
any name resolved data in any curl handle struct. That way, we won't mind if the cache entries are pruned for the next time we need them. We'll just resolve them again instead. This changes the Curl_resolv() proto. It modifies the SessionHandle struct but perhaps most importantly, it'll make the internals somewhat dependent on the DNS cache not being disabled as that will cripple operations somewhat. Especially for persistant connections.
2002-04-23removed warning about signed/unsigned comparisonDaniel Stenberg
2002-04-23fixes bug report #547484, no_proxy doesn't properly strip off port numbersDaniel Stenberg
from the host names before comparing
2002-04-12store TIMER_CONNECT even if the connect failedDaniel Stenberg
2002-04-12corrected the verbose output for connects and fixed the connect time stampDaniel Stenberg
better for FTP (any protocol with protocol-specific connect actions)
2002-04-12Jean-Philippe Barrette-LaPierre provided his patch that introducesDaniel Stenberg
CURLOPT_DEBUGFUNCTION and CURLOPT_DEBUGDATA.
2002-04-10default proxy port set, as reported by Sebastien WillemijnsDaniel Stenberg
2002-04-10error code cleanup, use the new SEND/RECV errorsDaniel Stenberg
2002-04-04T. Bharath pointed out the flaw in ConnectionExists() for how we didn'tDaniel Stenberg
check proxy connections for "deadness" before they were re-used
2002-03-19copyright string (year) updateDaniel Stenberg
2002-03-14CURLOPT_POST deserved a new comment with the new POST-by-callback supportDaniel Stenberg
2002-03-13Setting CURLOPT_PASSWDFUNCTION to NULL now restores the internal function.Daniel Stenberg
2002-03-08Jean-Philippe Barrette-LaPierre fixed the CURLOPT_PASSWDFUNCTION to makeDaniel Stenberg
NULL set back the internal default function
2002-02-28Wesley Laxton's CURLOPT_PREQUOTE workDaniel Stenberg
2002-02-17Giaslas Georgios's Host: over proxy fixDaniel Stenberg
2002-01-29conn->upload_bufsize exists no moreDaniel Stenberg
2002-01-29Giaslas Georgios introduced CURLINFO_CONTENT_TYPEDaniel Stenberg