Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-08-08 | Patrick Bihan-Faou introduced CURLOPT_SSL_VERIFYHOST and code to deal with | Daniel Stenberg | |
it. | |||
2001-08-06 | Nico's fixes for VMS, most of these are fixes for bad uses of size_t that | Daniel Stenberg | |
forgets that it is very often unsigned. These should be fixed globally and then many #ifdef VMS lines can be removed. | |||
2001-08-06 | Curl_FormFree renamed to Curl_formclean, as it turns out VMS for example | Daniel Stenberg | |
requires all global symbols to be *case insentively* unique! curl_formfree is a global function we shouldn't touch. | |||
2001-08-06 | adjusted for VMS | Daniel Stenberg | |
2001-08-06 | Nico's VMS fixes | Daniel Stenberg | |
2001-08-06 | Nico's VMS adjustment | Daniel Stenberg | |
2001-08-06 | VMS adjustments. The IOCTL_3_ARGS #define used now should be moved to become | Daniel Stenberg | |
a configure checked one. | |||
2001-08-06 | Nico Baggus made it work and compile under VMS! | Daniel Stenberg | |
2001-08-06 | Nico Baggus' VMS adjustments | Daniel Stenberg | |
2001-08-06 | VMS #ifdefs added. several related to size_t problems that we must address | Daniel Stenberg | |
globally anyway... check these as soon as the size_t fixes are in place | |||
2001-08-06 | made this whole file #ifdef WIN32 | Daniel Stenberg | |
2001-08-06 | VMS #include fixes, | Daniel Stenberg | |
file:// URL treatment improvements | |||
2001-08-06 | Jonathan Hseu noticed that you couldn't get a header callback unless you | Daniel Stenberg | |
set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that data. This is now fixed. | |||
2001-08-06 | corrected the comment for CURLOPT_WRITEHEADER in setopt(), and made it | Daniel Stenberg | |
read a void * and not a FILE *, as that was how it used to work and not anymore... | |||
2001-08-05 | curl_escape() no longer attempts to detect already encoded stuff (in order | Daniel Stenberg | |
not to re-encode it). | |||
2001-08-05 | - Sergio Ballestrero provided a patch for reading responses from NCSA httpd | Daniel Stenberg | |
1.5.x servers, as they return really screwed up response headers when asked for with HTTP 1.1. | |||
2001-08-03 | complete rewrite to avoid the BSD license in the previous version | Daniel Stenberg | |
2001-08-03 | fixed the header that wrongly was the krb4-style one | Daniel Stenberg | |
2001-08-03 | Andrew Francis base64 decode, my previous base64 encoder, new source header. | Daniel Stenberg | |
No BSD-style license. | |||
2001-08-03 | httpreq cleanup fix | Daniel Stenberg | |
2001-08-02 | don't do final newline output when using progress callback | Daniel Stenberg | |
2001-08-02 | FD_ZERO() the keepfd variables properly when keepon is modified (Tomasz Lacki | Daniel Stenberg | |
reported 12 Jul 2001) | |||
2001-07-12 | Add win32 initialization support to curl_global_init() and | Sterling Hughes | |
curl_global_cleanup(). Update corresponding man pages... Improve the logic in curl_global_cleanup() and curl_global_init() so that they are not called twice if the application libraries have been initialized and make sure to reset the init flags in curl_global_cleanup(). | |||
2001-06-29 | added strtok.c as a source file | Daniel Stenberg | |
2001-06-29 | Nic Roets brought a fix for the certificate verification when using SSL. | Daniel Stenberg | |
2001-06-25 | Anton Kalmykov's fix for dealing with form names with spaces! | Daniel Stenberg | |
2001-06-19 | better treatment of truly aborted transfers | Daniel Stenberg | |
2001-06-18 | files to ignore by default in cvs operations | Daniel Stenberg | |
2001-06-12 | removed a failf() that would overwrite the previous error message | Daniel Stenberg | |
2001-06-12 | Salvador Dávila's ftp range download fix | Daniel Stenberg | |
2001-06-11 | corrected the -version-info | Daniel Stenberg | |
2001-06-07 | duplicate curl_unescape entry removed | Daniel Stenberg | |
2001-06-07 | SDavila posted a fix that sets conn->bits.use_range properly when doing | Daniel Stenberg | |
resumed downloads | |||
2001-06-07 | Jörn corrected the mingw32 makefile | Daniel Stenberg | |
2001-06-06 | S. Moonesamy updates, strtok.[ch] issues | Daniel Stenberg | |
2001-06-05 | made the test-program in the bottom compile/build, remember to link with | Daniel Stenberg | |
strequal.o as well! | |||
2001-05-31 | CURLOPT_MUTE and data->bits.mute are history, removed, gone! | Daniel Stenberg | |
2001-05-31 | Test and substance patch. | Sterling Hughes | |
This is my first CVS commit :), what it does: - Makes sure that parts of the cURL library don't get initialized twice - Makes sure that we only free what we initialize | |||
2001-05-31 | removed _REENTRANT define | Daniel Stenberg | |
2001-05-31 | re-generated | Daniel Stenberg | |
2001-05-31 | include setup.h _before_ system includes | Daniel Stenberg | |
2001-05-31 | if NEED_REENTRANT is set, define _REENTRANT already here since it has to | Daniel Stenberg | |
be defined as many include files as possible (Solaris req) | |||
2001-05-31 | includes setup.h, and thus I could remove the _REENTRANT define | Daniel Stenberg | |
2001-05-31 | went back to the version where the flags argument to curl_global_init() | Daniel Stenberg | |
specify exactly what global parts to init. Thanks to Sterling Hughes really for arguing wisely. | |||
2001-05-31 | removed the prototype and made it include string.h instead | Daniel Stenberg | |
If your system, such as Solaris 2.7, lacks the strtok_r() prototype in string.h, then you'll face a bunch of warnings on all instances where strtok_r() is used. There's not much we can do about it. Adding a prototype here screws everything up on other platforms! :-( | |||
2001-05-31 | Sterling Hughes suggested we set 'static' before size_t... | Daniel Stenberg | |
2001-05-30 | libcurl now has MUTE and NOPROGRESS set by default | Daniel Stenberg | |
2001-05-30 | include strtok.h to get the prototype | Daniel Stenberg | |
2001-05-30 | finally fixed the 'ret' compiler warning | Daniel Stenberg | |
2001-05-30 | curl_global_init() support for CURL_GLOBAL_NOT_SSL | Daniel Stenberg | |