summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* removed a bunch of warnings for IPv6-compilesDaniel Stenberg2001-03-141-12/+16
|
* now works with IPv6 and HTTP proxyDaniel Stenberg2001-03-141-10/+12
|
* hm, don't free the home dir and append the .netrc part properlyDaniel Stenberg2001-03-141-7/+9
|
* uses getpwuid() to find user's home dirDaniel Stenberg2001-03-141-9/+33
|
* Edin Kadribaic's bug report #408488 forced a rearrange of two struct fieldsDaniel Stenberg2001-03-145-19/+26
| | | | from urldata to connectdata, quite correctly.
* Björn Stenberg corrected the silly '(void)data' usage when SSL is notDaniel Stenberg2001-03-141-1/+1
| | | | used
* Jörn's updated fileDaniel Stenberg2001-03-141-22/+22
|
* First Jörn's updates were applied, thenDaniel Stenberg2001-03-141-25/+14
| | | | | my take at removing the private functions from the list, then I renamed the *str(n)equal functions...
* increased the 'current' number for the interfaceDaniel Stenberg2001-03-141-1/+1
|
* The Curl_* prefixes are now changed for curl_* ones, as these two functionsDaniel Stenberg2001-03-142-6/+10
| | | | are used externally and thus are public symbols.
* Jörn fixed it to compile on win32 againDaniel Stenberg2001-03-141-2/+3
|
* Jörn Hartroth added a set of filesDaniel Stenberg2001-03-141-2/+2
|
* Jörn Hartroth fixed a bad #endif placementDaniel Stenberg2001-03-141-1/+1
|
* re-added the default switch for weird statesDaniel Stenberg2001-03-131-2/+0
|
* Added a failf() error message when the chunked read returns failureDaniel Stenberg2001-03-131-1/+3
|
* updated the chunked state-machine to deal with the trailing CRLF that comesDaniel Stenberg2001-03-132-5/+39
| | | | after the data part
* failf() now respects the mute flagDaniel Stenberg2001-03-131-3/+3
|
* initial close policy supportDaniel Stenberg2001-03-131-2/+19
|
* Added 'created' to the connectdata struct to hold the creation date, toDaniel Stenberg2001-03-131-1/+2
| | | | be used for the close policy decision
* Curl_tvnow is now properly declared with (void)Daniel Stenberg2001-03-131-1/+1
|
* two new random seed options for the ssl config structDaniel Stenberg2001-03-121-0/+2
|
* two new random seed options: CURLOPT_RANDOM_FILE and CURLOPT_EGDSOCKETDaniel Stenberg2001-03-122-19/+47
|
* updated the comment for the chunked readingDaniel Stenberg2001-03-121-3/+3
|
* made it return illegal hex in case no hexadecimal digit was read when atDaniel Stenberg2001-03-121-2/+9
| | | | least one was expected
* added an error code for illegal hex values in the chunked streamDaniel Stenberg2001-03-121-1/+2
|
* support for a few new libcurl 7.7 CURLOPT_* options addedDaniel Stenberg2001-03-122-7/+279
|
* Added infof() calls for persistant connection info, we are very likely toDaniel Stenberg2001-03-122-0/+5
| | | | need these at least for debugging 7.7 and probably later as well...
* modified Curl_disconnect() so that it unlinks itself from the data struct,Daniel Stenberg2001-03-121-14/+7
| | | | | 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.
* bugfix: don't use the connectindex if it is -1Daniel Stenberg2001-03-121-1/+2
|
* use the new name and hostname even though an old connection is reused, sinceDaniel Stenberg2001-03-091-5/+12
| | | | | we can re-use a proxy connection that actually has different host names on the same connection
* remake Host: for each connection and it'll work with proxies tooDaniel Stenberg2001-03-091-4/+8
|
* for HTTP/1.0 we default to non keep-alive connections, but when we get aDaniel Stenberg2001-03-091-0/+18
| | | | | 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
* Added httpversion to the progress struct, we do read it, we can just as wellDaniel Stenberg2001-03-091-0/+1
| | | | store it.
* all comments for the former public "low level" interface have been removedDaniel Stenberg2001-03-091-220/+19
| | | | | | since they were out-of-date and not correct anymore. moved around some struct fields
* removed handles and states from the main structsDaniel Stenberg2001-03-091-159/+111
| | | | | renamed prefixes from curl_ to Curl_ made persistant connections work with http proxies (at least partly)
* curl_transfer became Curl_perform() to better match the public name andDaniel Stenberg2001-03-091-1/+2
| | | | use the correct prefix
* prefix changes curl_ to Curl_Daniel Stenberg2001-03-091-27/+27
| | | | | made it work (partly) with persistant connections for HTTP/1.0 replies moved the 'newurl' struct field for Location: to the connectdata struct
* #include <string.h> removed a warningDaniel Stenberg2001-03-091-0/+1
|
* removed curl_read() and curl_write() - they weren't used and the publicDaniel Stenberg2001-03-091-33/+0
| | | | "low leve" interface is dumped
* uses socklen_t nowDaniel Stenberg2001-03-092-2/+2
|
* curl_ prefix modified to Curl_Daniel Stenberg2001-03-091-1/+1
|
* accept() and getsockname() now use socklen_t types, as that was just addedDaniel Stenberg2001-03-091-3/+3
| | | | to configure
* use unsigned int hex to receive the hex digit in, caused a warning withDaniel Stenberg2001-03-091-1/+1
| | | | -Wall and a new gcc
* Modified to use Curl_* functions instead of curl_* onesDaniel Stenberg2001-03-091-12/+7
|
* return from transfer when all headers have been received and nobody is set,Daniel Stenberg2001-03-081-7/+14
| | | | as is the case when doing HEAD requests
* "Transfer-Encoding: chunked" support addedDaniel Stenberg2001-03-076-17/+61
|
* added the http_chunks filesDaniel Stenberg2001-03-071-1/+2
|
* chunked transfer encoding supportDaniel Stenberg2001-03-072-0/+261
|
* initial chunked transfer-encoding supportDaniel Stenberg2001-03-072-2/+27
|
* removed compiler warning if HAVE_RAND_STATUS is falseDaniel Stenberg2001-03-071-6/+8
|