aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-05-21five new test cases for the netrc parsingDaniel Stenberg
2002-05-21maprintf() and vmaprintf() now work better when printfing "%s" with anDaniel Stenberg
empty string
2002-05-21corrected see alsoDaniel Stenberg
2002-05-213.14 added, javascript supportDaniel Stenberg
2002-05-21Added source header and made it clear that this code was originally donatedDaniel Stenberg
to us by Juergen Wilke.
2002-05-21ASN1 files don't work for the *chain_file(), make them use the previousDaniel Stenberg
version
2002-05-21return type CURLFORMcode instead of plain intDaniel Stenberg
2002-05-21curl_formadd() now returns 'CURLFORMcode' instead of int, to better enableDaniel Stenberg
checking for particular errors. curl/curl.h defines the errros
2002-05-20Roland Zimmermann's hint, we use SSL_CTX_use_certificate_chain_file() insteadDaniel Stenberg
of the previous one that used SSL_CTX_use_certificate_file()
2002-05-17removed compiler warningsDaniel Stenberg
2002-05-17FreeBSD needs sys/types.h before we include sys/select.h that was includedDaniel Stenberg
mainly for AIX in the first place...! As reported in bug report #556869
2002-05-17Fixes bug report #556930 - we need to make sure that the data is all rightDaniel Stenberg
after we've realloc() the packed hostent struct.
2002-05-15Added item 4.10 after talks with Russ FreemanDaniel Stenberg
2002-05-137.9.7 commitDaniel Stenberg
2002-05-13we don't need win32sockets.c anymore, we support this internallyDaniel Stenberg
2002-05-13fopen.c added, a fopen() style emulation for URL readingDaniel Stenberg
2002-05-12Friday's fixesDaniel Stenberg
2002-05-10AIX 5.1Daniel Stenberg
2002-05-10Kein Roth made --trace-ascii look even better, and make OD 0A occurancesDaniel Stenberg
get output as plain newlines.
2002-05-10AIX wants sys/select.h for the fd_set stuff in curl/multi.h, and even thoughDaniel Stenberg
it is a bit ugly work-around to add this here, it is still a working work- around! ;-)
2002-05-07Patrick Smith's contributed docs improvements for when NLST is used byDaniel Stenberg
curl...
2002-05-077.9.7-pre2Daniel Stenberg
2002-05-07Added --trace-ascii supportDaniel Stenberg
2002-05-07--trace-ascii and --junk-session-cookies were addedDaniel Stenberg
2002-05-07support for ingoring session cookies addedDaniel Stenberg
2002-05-06the code for case CURLOPT_DEBUGDATA code broke the CURLOPT_STDERR one!Daniel Stenberg
2002-05-06recent fiddlingDaniel Stenberg
2002-05-06CURLOPT_FILE and CURLOPT_INFILE have better aliases now:Daniel Stenberg
CURLOPT_WRITEDATA and CURLOPT_READDATA
2002-05-06Added multi-post.c, based on the source file posted by Gustaf HuiDaniel Stenberg
2002-05-05Better support for being used with the multi interface without the *fd_set()Daniel Stenberg
and proper select()ing have been made.
2002-05-05--trace is a 7.9.7 functionDaniel Stenberg
2002-05-05added -Z/--max-redirs and --traceDaniel Stenberg
changed order of a few others to keep the a-z order
2002-05-04made VERBOSE output more like it used to be, HEADER_IN is thus also ignoredDaniel Stenberg
by the internal debugfunction callback
2002-05-03CURL_MAX_WRITE_SIZE is a new exported define that informs about the biggestDaniel Stenberg
sized buffer that may be passed to a write callback
2002-05-03fixed return codeDaniel Stenberg
2002-05-03another week of changesDaniel Stenberg
2002-05-03- Added "--trace [file]" to the command line tool. It makes a very detailedDaniel Stenberg
trace dump get stored, with a full protocol dump that includes all received and transmitted data. This could be a very effective tool for debugging what goes wrong. This dump includes every byte the way it is sent to/received from the server. The dump is the plain-text version, so SSL transfers will still be readable.
2002-05-03made the DEBUGFUNCTION get called properly on a few more places, especiallyDaniel Stenberg
for DATA_IN and DATA_OUT.
2002-05-03make sure our own printf() clones are usedDaniel Stenberg
2002-05-03-D now stores all headers to the same file if multiple URLs are given on theDaniel Stenberg
command line!
2002-05-02clarified that you must keep the variables that you point to!Daniel Stenberg
2002-05-02spellDaniel Stenberg
2002-05-02use and set the fd_set pointers instead of the actual values, as then weDaniel Stenberg
work properly with the multi interface when the user has provided the fd_sets!
2002-05-02added two pointers to the fd_set variables to read/write from, as sometimesDaniel Stenberg
we need to point to user-provided fd_sets
2002-05-02return CURLM_CALL_MULTI_PERFORM in one more case, and check return codeDaniel Stenberg
from malloc()
2002-05-02make sure the dns cache pointers in the easy handles are NULLedDaniel Stenberg
2002-05-02Hanno Kranzhoff noticed we didn't properly reset the download/upload countersDaniel Stenberg
before transfers, when doing multiple ones on the same handle.
2002-05-01Jacky Lam's fix to make the realloc() of the hostent data work properlyDaniel Stenberg
even when the realloc() actually gets a new memory block
2002-04-30how to set more than one cookieDaniel Stenberg
2002-04-27implemented curl_multi_info_read() which I had forgotten before!Daniel Stenberg