aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-05-01Jacky Lam's fix to make the realloc() of the hostent data work properlyDaniel Stenberg
even when the realloc() actually gets a new memory block
2002-04-30how to set more than one cookieDaniel Stenberg
2002-04-27implemented curl_multi_info_read() which I had forgotten before!Daniel Stenberg
2002-04-27updated some docsDaniel Stenberg
2002-04-27clarifiedDaniel Stenberg
2002-04-27one added, one editedDaniel Stenberg
2002-04-27shorter introductionDaniel Stenberg
2002-04-27updatedDaniel Stenberg
2002-04-27Added BINDINGS, lists all available libcurl bindings as of this date.Daniel Stenberg
2002-04-27fixes on rainy saturday in the end of April, 2002Daniel Stenberg
2002-04-27Fixed the FTP response reader to deal with timeouts better. Previously itDaniel Stenberg
would reset the timeout for each incoming data, which would make veeery slow responses be allowed to take even more time since the timeout would only be reached if the time between two received data chunks was longer than the set timeout value...
2002-04-27(Curl_GetFTPResponse) moved some code to only get performed when actuallyDaniel Stenberg
needed
2002-04-27Now uses Curl_ as prefix for internal global symbols. curl_ should only beDaniel Stenberg
used for "exported" globals.
2002-04-27DNC cache prune crash removed, made the name spacing follow the generalDaniel Stenberg
rule: "Curl_" prefix for library-wide private symbols, "curl_" is for exported symbols.
2002-04-26openbsd on Alpha was no problemosDaniel Stenberg
2002-04-26test suite portability fixDaniel Stenberg
2002-04-26handles much larger POSTs, replaced snprintf() with sprintf() since thisDaniel Stenberg
needs to be more portable and in the test server we can skip the extra safety
2002-04-26another week of changesDaniel Stenberg
2002-04-25adjusted to the new Curl_resolv() protoDaniel 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-25the TOTAL_TIME is not really total, as it excludes the connect time...Daniel Stenberg
2002-04-25use the hostname pointer instead of using IPv4-only info from a structDaniel Stenberg
2002-04-24clarified a bit with the timecondition stuffDaniel Stenberg
2002-04-24no, this doesn't look like it bugsDaniel Stenberg
2002-04-24NetBSD alpha works, also tried a newer FreeBSD on alphaDaniel Stenberg
2002-04-23removed warning about signed/unsigned comparisonDaniel Stenberg
2002-04-23the 80 column police narrowed this source code! B-]Daniel 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-23use new timecond definesDaniel Stenberg
2002-04-22allow binding the local end of a connection even when using IPv6, thus weDaniel Stenberg
now have --interface working properly
2002-04-22use double where it is supposed toDaniel Stenberg
2002-04-22use sclose() to close socketsDaniel Stenberg
2002-04-22renamed the TIMECOND defines to be CURL_ prefixedDaniel Stenberg
2002-04-22The timecond stuff now have CURL_ prefixesDaniel Stenberg
2002-04-22Jacky Lam's adjust resolve-buffer size patch applied. Slightly editedDaniel Stenberg
by Daniel.
2002-04-19pack_hostent does not handle 64 bit pointers correctly.Daniel Stenberg
A Bjørn Reese patch.
2002-04-17Prune old hostcache entries with each call...Sterling Hughes
This can be optimized a tidbit, but this is a start.
2002-04-17Dirk Manske's two new infosDaniel Stenberg
2002-04-17Dirk Manske's fix for HTTP response code 301, that now behaves more likeDaniel Stenberg
browsers do. Which thus *breaks* the RFC 2616...
2002-04-16Dirk Manske brought the patch that introduces two new CURLINFO_* values:Daniel Stenberg
CURLINFO_REDIRECT_TIME and CURLINFO_REDIRECT_COUNT.
2002-04-15Jonatan Lander fixed the "Disables POST, goes with GET" output to be moreDaniel Stenberg
connected with reality! ;-)
2002-04-15This makes formposting with a specified file missing fail. curl_easy_performDaniel Stenberg
will then return CURLE_READ_ERROR.
2002-04-157.9.6 commitDaniel Stenberg
2002-04-14Dirk Manske made libcurl strip off white spaces from the beginning of cookieDaniel Stenberg
contents.
2002-04-14check for _MSC_VER as well as __STDC__ when deciding to use the ## operatorDaniel Stenberg
or not
2002-04-14removed unused variableDaniel Stenberg
2002-04-13Add protos and change return value of curl_hash_count....Sterling Hughes
2002-04-12Speed up the hash code considerably, removing a bunch of legacy crudSterling Hughes
2002-04-12cut off an old sectionDaniel Stenberg