aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2001-03-22made it use Curl_ prefixes on global symbolsDaniel Stenberg
2001-03-22Jim Drash suggested and I made it not encode what looks like an alreadyDaniel Stenberg
encoded letter (in curl_escape)
2001-03-22removed the duplicates!Daniel Stenberg
2001-03-22added escape and unescapeDaniel Stenberg
2001-03-22the new escape/unescape function setupDaniel Stenberg
2001-03-19Added support for HTTP code 100 continue, as 8.2.3 in RFC2616 definesDaniel Stenberg
2001-03-16detect if chunked transfers are abortedDaniel Stenberg
2001-03-16corrected the close to sclose() so that the memdebug stuff worksDaniel Stenberg
2001-03-16re-generated with the memdebug.h includeDaniel Stenberg
2001-03-16added memdebug.h includeDaniel Stenberg
2001-03-15added connect timeout supportDaniel Stenberg
2001-03-14removed a bunch of warnings for IPv6-compilesDaniel Stenberg
2001-03-14now works with IPv6 and HTTP proxyDaniel Stenberg
2001-03-14hm, don't free the home dir and append the .netrc part properlyDaniel Stenberg
2001-03-14uses getpwuid() to find user's home dirDaniel Stenberg
2001-03-14Edin Kadribaic's bug report #408488 forced a rearrange of two struct fieldsDaniel Stenberg
from urldata to connectdata, quite correctly.
2001-03-14Björn Stenberg corrected the silly '(void)data' usage when SSL is notDaniel Stenberg
used
2001-03-14Jörn's updated fileDaniel Stenberg
2001-03-14First Jörn's updates were applied, thenDaniel Stenberg
my take at removing the private functions from the list, then I renamed the *str(n)equal functions...
2001-03-14increased the 'current' number for the interfaceDaniel Stenberg
2001-03-14The Curl_* prefixes are now changed for curl_* ones, as these two functionsDaniel Stenberg
are used externally and thus are public symbols.
2001-03-14Jörn fixed it to compile on win32 againDaniel Stenberg
2001-03-14Jörn Hartroth added a set of filesDaniel Stenberg
2001-03-14Jörn Hartroth fixed a bad #endif placementDaniel Stenberg
2001-03-13re-added the default switch for weird statesDaniel Stenberg
2001-03-13Added a failf() error message when the chunked read returns failureDaniel Stenberg
2001-03-13updated the chunked state-machine to deal with the trailing CRLF that comesDaniel Stenberg
after the data part
2001-03-13failf() now respects the mute flagDaniel Stenberg
2001-03-13initial close policy supportDaniel Stenberg
2001-03-13Added 'created' to the connectdata struct to hold the creation date, toDaniel Stenberg
be used for the close policy decision
2001-03-13Curl_tvnow is now properly declared with (void)Daniel Stenberg
2001-03-12two new random seed options for the ssl config structDaniel Stenberg
2001-03-12two new random seed options: CURLOPT_RANDOM_FILE and CURLOPT_EGDSOCKETDaniel Stenberg
2001-03-12updated the comment for the chunked readingDaniel Stenberg
2001-03-12made it return illegal hex in case no hexadecimal digit was read when atDaniel Stenberg
least one was expected
2001-03-12added an error code for illegal hex values in the chunked streamDaniel Stenberg
2001-03-12support for a few new libcurl 7.7 CURLOPT_* options addedDaniel Stenberg
2001-03-12Added infof() calls for persistant connection info, we are very likely toDaniel Stenberg
need these at least for debugging 7.7 and probably later as well...
2001-03-12modified Curl_disconnect() so that it unlinks itself from the data struct,Daniel Stenberg
it saves me from more mistakes when the connectindex is -1 ... also, there's no point in having its parent do it as all parents would do it anyway.
2001-03-12bugfix: don't use the connectindex if it is -1Daniel Stenberg
2001-03-09use the new name and hostname even though an old connection is reused, sinceDaniel Stenberg
we can re-use a proxy connection that actually has different host names on the same connection
2001-03-09remake Host: for each connection and it'll work with proxies tooDaniel Stenberg
2001-03-09for HTTP/1.0 we default to non keep-alive connections, but when we get aDaniel Stenberg
1.0-reply from a proxy we use and the Proxy-Connection: keep-alive header is used, we switch it on and live happily ever after
2001-03-09Added httpversion to the progress struct, we do read it, we can just as wellDaniel Stenberg
store it.
2001-03-09all comments for the former public "low level" interface have been removedDaniel Stenberg
since they were out-of-date and not correct anymore. moved around some struct fields
2001-03-09removed handles and states from the main structsDaniel Stenberg
renamed prefixes from curl_ to Curl_ made persistant connections work with http proxies (at least partly)
2001-03-09curl_transfer became Curl_perform() to better match the public name andDaniel Stenberg
use the correct prefix
2001-03-09prefix changes curl_ to Curl_Daniel Stenberg
made it work (partly) with persistant connections for HTTP/1.0 replies moved the 'newurl' struct field for Location: to the connectdata struct
2001-03-09#include <string.h> removed a warningDaniel Stenberg
2001-03-09removed curl_read() and curl_write() - they weren't used and the publicDaniel Stenberg
"low leve" interface is dumped