aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
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
2001-03-09uses socklen_t nowDaniel Stenberg
2001-03-09curl_ prefix modified to Curl_Daniel Stenberg
2001-03-09accept() and getsockname() now use socklen_t types, as that was just addedDaniel Stenberg
to configure
2001-03-09use unsigned int hex to receive the hex digit in, caused a warning withDaniel Stenberg
-Wall and a new gcc
2001-03-09Modified to use Curl_* functions instead of curl_* onesDaniel Stenberg
2001-03-08return from transfer when all headers have been received and nobody is set,Daniel Stenberg
as is the case when doing HEAD requests
2001-03-07"Transfer-Encoding: chunked" support addedDaniel Stenberg
2001-03-07added the http_chunks filesDaniel Stenberg
2001-03-07chunked transfer encoding supportDaniel Stenberg
2001-03-07initial chunked transfer-encoding supportDaniel Stenberg
2001-03-07removed compiler warning if HAVE_RAND_STATUS is falseDaniel Stenberg
2001-03-06new seeding stuff as mentioned by Albert ChinDaniel Stenberg
2001-03-05removed an incorrect commentDaniel Stenberg
2001-03-05free the struct on doneDaniel Stenberg
2001-03-05telnet without any static variablesDaniel Stenberg
2001-03-05set download size properly for HTTP downloadsDaniel Stenberg