aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2001-08-09Added $Id:$ string for file version in the headerDaniel Stenberg
2001-08-08Patrick Bihan-Faou introduced CURLOPT_SSL_VERIFYHOST and code to deal withDaniel Stenberg
it.
2001-08-06Nico's fixes for VMS, most of these are fixes for bad uses of size_t thatDaniel Stenberg
forgets that it is very often unsigned. These should be fixed globally and then many #ifdef VMS lines can be removed.
2001-08-06Curl_FormFree renamed to Curl_formclean, as it turns out VMS for exampleDaniel Stenberg
requires all global symbols to be *case insentively* unique! curl_formfree is a global function we shouldn't touch.
2001-08-06adjusted for VMSDaniel Stenberg
2001-08-06Nico's VMS fixesDaniel Stenberg
2001-08-06Nico's VMS adjustmentDaniel Stenberg
2001-08-06VMS adjustments. The IOCTL_3_ARGS #define used now should be moved to becomeDaniel Stenberg
a configure checked one.
2001-08-06Nico Baggus made it work and compile under VMS!Daniel Stenberg
2001-08-06Nico Baggus' VMS adjustmentsDaniel Stenberg
2001-08-06VMS #ifdefs added. several related to size_t problems that we must addressDaniel Stenberg
globally anyway... check these as soon as the size_t fixes are in place
2001-08-06made this whole file #ifdef WIN32Daniel Stenberg
2001-08-06VMS #include fixes,Daniel Stenberg
file:// URL treatment improvements
2001-08-06 Jonathan Hseu noticed that you couldn't get a header callback unless youDaniel Stenberg
set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that data. This is now fixed.
2001-08-06corrected the comment for CURLOPT_WRITEHEADER in setopt(), and made itDaniel Stenberg
read a void * and not a FILE *, as that was how it used to work and not anymore...
2001-08-05curl_escape() no longer attempts to detect already encoded stuff (in orderDaniel Stenberg
not to re-encode it).
2001-08-05- Sergio Ballestrero provided a patch for reading responses from NCSA httpdDaniel Stenberg
1.5.x servers, as they return really screwed up response headers when asked for with HTTP 1.1.
2001-08-03complete rewrite to avoid the BSD license in the previous versionDaniel Stenberg
2001-08-03fixed the header that wrongly was the krb4-style oneDaniel Stenberg
2001-08-03Andrew Francis base64 decode, my previous base64 encoder, new source header.Daniel Stenberg
No BSD-style license.
2001-08-03httpreq cleanup fixDaniel Stenberg
2001-08-02don't do final newline output when using progress callbackDaniel Stenberg
2001-08-02FD_ZERO() the keepfd variables properly when keepon is modified (Tomasz LackiDaniel Stenberg
reported 12 Jul 2001)
2001-07-12Add win32 initialization support to curl_global_init() andSterling 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-29added strtok.c as a source fileDaniel Stenberg
2001-06-29Nic Roets brought a fix for the certificate verification when using SSL.Daniel Stenberg
2001-06-25Anton Kalmykov's fix for dealing with form names with spaces!Daniel Stenberg
2001-06-19better treatment of truly aborted transfersDaniel Stenberg
2001-06-18files to ignore by default in cvs operationsDaniel Stenberg
2001-06-12removed a failf() that would overwrite the previous error messageDaniel Stenberg
2001-06-12Salvador Dávila's ftp range download fixDaniel Stenberg
2001-06-11corrected the -version-infoDaniel Stenberg
2001-06-07duplicate curl_unescape entry removedDaniel Stenberg
2001-06-07SDavila posted a fix that sets conn->bits.use_range properly when doingDaniel Stenberg
resumed downloads
2001-06-07Jörn corrected the mingw32 makefileDaniel Stenberg
2001-06-06S. Moonesamy updates, strtok.[ch] issuesDaniel Stenberg
2001-06-05made the test-program in the bottom compile/build, remember to link withDaniel Stenberg
strequal.o as well!
2001-05-31CURLOPT_MUTE and data->bits.mute are history, removed, gone!Daniel Stenberg
2001-05-31Test 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-31removed _REENTRANT defineDaniel Stenberg
2001-05-31re-generatedDaniel Stenberg
2001-05-31include setup.h _before_ system includesDaniel Stenberg
2001-05-31if NEED_REENTRANT is set, define _REENTRANT already here since it has toDaniel Stenberg
be defined as many include files as possible (Solaris req)
2001-05-31includes setup.h, and thus I could remove the _REENTRANT defineDaniel Stenberg
2001-05-31went 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-31removed the prototype and made it include string.h insteadDaniel 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-31Sterling Hughes suggested we set 'static' before size_t...Daniel Stenberg
2001-05-30libcurl now has MUTE and NOPROGRESS set by defaultDaniel Stenberg
2001-05-30include strtok.h to get the prototypeDaniel Stenberg
2001-05-30finally fixed the 'ret' compiler warningDaniel Stenberg