Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-09-11 | Lukasz Czekierda correctly pointed out that curl used a bad Host: header | Daniel Stenberg | |
when talking to a IPv6-server using IPv6 IP address only. | |||
2002-09-03 | updated source code boilerplate/header | Daniel Stenberg | |
2002-09-02 | James Gallagher's Content-Encoding work | Daniel Stenberg | |
2002-08-30 | CURLE_SSL_INSECURE is removed again and so is CURLOPT_SSL_INSECURE, we | Daniel Stenberg | |
proceed fine with the already existing options, just having a different internal library default for capath. | |||
2002-08-30 | SOCKS5 support added (contributed by a still unnamed person). Not properly | Daniel Stenberg | |
working for "IPv6 enabled" libcurls yet, but should be pretty easy for someone to adjust. | |||
2002-08-29 | remove the data and conn fields from the Curl_transfer_keeper struct, they | Daniel Stenberg | |
weren't used anyway and mostly caused confusion | |||
2002-08-26 | SSL_INSECURE support and usage added | Daniel Stenberg | |
2002-08-22 | Markus F.X.J. Oberhumer's added comment | Daniel Stenberg | |
2002-08-13 | Sterling Hughes brings the share interface | Daniel Stenberg | |
2002-08-12 | Initial fix to make the multi interface return control while waiting for | Daniel Stenberg | |
the initial connect to "come through". This should work fine for connect and for FTP-PASV connects. Needs massive testing. | |||
2002-08-08 | Markus F.X.J. Oberhumer's CURLOPT_NOSIGNAL patch | Daniel Stenberg | |
2002-08-05 | Make SessionHandle keep record if it is used with the multi interface or | Daniel Stenberg | |
the easy interface, it CANNOT be used by a mixture. | |||
2002-06-15 | CURLOPT_BUFFERSIZE allows an application to set a prefered buffer size | Daniel Stenberg | |
for receiving data from the network. It is meant as a hint, not as a forced limit. | |||
2002-06-14 | Remade the FTP not-check status line and not-attempt-to-read-status-line | Daniel Stenberg | |
variables, conditions and things. | |||
2002-06-13 | Added 'dont_check' to be set during an FTP operation if the final status | Daniel Stenberg | |
message is supposed to be ignored. | |||
2002-05-21 | James Cone's efforts to add another netrc parsing "mode" | Daniel Stenberg | |
2002-05-07 | support for ingoring session cookies added | Daniel Stenberg | |
2002-05-03 | CURL_MAX_WRITE_SIZE is a new exported define that informs about the biggest | Daniel Stenberg | |
sized buffer that may be passed to a write callback | |||
2002-05-02 | added two pointers to the fd_set variables to read/write from, as sometimes | Daniel Stenberg | |
we need to point to user-provided fd_sets | |||
2002-04-25 | In order to not get problems with DNS cache pruning, we no longer store | Daniel 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-16 | Dirk Manske brought the patch that introduces two new CURLINFO_* values: | Daniel Stenberg | |
CURLINFO_REDIRECT_TIME and CURLINFO_REDIRECT_COUNT. | |||
2002-04-12 | Jean-Philippe Barrette-LaPierre provided his patch that introduces | Daniel Stenberg | |
CURLOPT_DEBUGFUNCTION and CURLOPT_DEBUGDATA. | |||
2002-03-19 | copyright string (year) update | Daniel Stenberg | |
2002-02-28 | Wesley Laxton's CURLOPT_PREQUOTE work | Daniel Stenberg | |
2002-01-29 | no more adjustable upload buffer size, we use non-blocking sockets now so | Daniel Stenberg | |
this work-around is not needed anymore! | |||
2002-01-29 | Giaslas Georgios introduced CURLINFO_CONTENT_TYPE | Daniel Stenberg | |
2002-01-16 | - shrunk the BUFSIZE define from 50K to 20K | Daniel Stenberg | |
- made a separate buffer for uploads (due to the non-blocking stuff) - added two connectdata struct fields for non-blocking uploads | |||
2002-01-08 | 1) the dns_cache_timeout should be an integer, not a bool | Sterling Hughes | |
2) in the curl_dns_cache_entry structure, timestamp should be a time_t instead of an integer (although I doubt it matters). | |||
2002-01-08 | Add support for DNS cache timeouts via the CURLOPT_DNS_CACHE_TIMEOUT option. | Sterling Hughes | |
The default cache timeout for this is 60 seconds, which is arbitrary and completely subject to change :) | |||
2002-01-07 | Make cach'ing work with threads now, there are now three cases: | Sterling Hughes | |
- Use a global dns cache (via setting the tentatively named, CURLOPT_DNS_USE_GLOBAL_CACHE option to true) - Use a per-handle dns cache, by default - Use a pooled dns cache when in the "multi" interface | |||
2002-01-03 | merged the multi-dev branch back into MAIN again | Daniel Stenberg | |
2002-01-03 | minor changes | Daniel Stenberg | |
2001-12-20 | If nobody is set we won't download any FTP file. If include_header is set, | Daniel Stenberg | |
we return a set of headers not more. This enables FTP operations that don't transfer any data, only perform FTP commands. | |||
2001-12-17 | Götz Babin-Ebell's OpenSSL ENGINE patch | Daniel Stenberg | |
2001-12-03 | As Eric Lavigne pointed out, the ftp response reader MUST cache data that | Daniel Stenberg | |
is not dealt with when we find an end-of-response line, as there might be important stuff even after the correct line. So on subsequent invokes, the cached data must be used! | |||
2001-12-02 | more careful re-use of connections when SSL is used over proxies | Daniel Stenberg | |
2001-11-28 | CURLOPT_FTP_USE_EPSV can now be set to FALSE to prevent libcurl from | Daniel Stenberg | |
attempting to use EPSV before the standard PASV. | |||
2001-11-27 | Eric Lavigne updates | Daniel Stenberg | |
2001-11-20 | Georg Horn's STARTTRANSFER_TIME patch | Daniel Stenberg | |
2001-11-02 | failf() now only overwrites the error buffer the first time it gets called | Daniel Stenberg | |
for each *_perform(). It makes things a lot easier, as the first one that detects the error get to write the final error reason... | |||
2001-10-29 | fixed conn->name error on connection re-use and enlarged the 'gname' array | Daniel Stenberg | |
to hold 512 bytes (for user+password+hostname) | |||
2001-10-19 | now counts header size return from server and if nothing is returned from a | Daniel Stenberg | |
HTTP server we return error | |||
2001-10-12 | progress meter fixes | Daniel Stenberg | |
2001-10-09 | added the option CURLOPT_HTTP_VERSION that can specify which HTTP version | Daniel Stenberg | |
libcurl should use in its request | |||
2001-10-02 | major connecting updates | Daniel Stenberg | |
2001-10-01 | renamed the stupid 'hp' to 'hostaddr' which actually says what it is | Daniel Stenberg | |
2001-09-28 | filetime should be -1 if the remote time was unknown as 0 is actually a | Daniel Stenberg | |
valid time. we now store the filetime as a long to know for sure it can hold -1 (there exist some unsigned time_t cases) | |||
2001-09-28 | more transparant support for IPv6 name resolving | Daniel Stenberg | |
2001-09-12 | moved a 100K buffer from the transfer loop to the urlstate struct, as it | Daniel Stenberg | |
seriously decreases the amount of used stack space | |||
2001-09-11 | added cipher_list | Daniel Stenberg | |