aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-06-03indent like the other onesDaniel Stenberg
2002-06-03Christophe Espern wrote another binding!Daniel Stenberg
2002-06-03updated headerDaniel Stenberg
2002-06-03T. Bharath's updates since curl now uses the winmm lib for higher resolutionDaniel Stenberg
timer
2002-06-03T. Bharath made the request size add up as it is documented to do.Daniel Stenberg
2002-06-03T. Bharath fixed higher resolution time for windows buildsDaniel Stenberg
2002-06-03T. Bharath fixed the TIMER_REDIRECT.Daniel Stenberg
2002-05-28Getting an empty FTP file no longer makes us return error 19. An empty fileDaniel Stenberg
is fine to get.
2002-05-28 Gustaf Hui provided new code that changes how curl_multi_info_read()Daniel Stenberg
messages are stored, so that they don't have to be kept around for the multi handle's entire life time. He also made it return failure codes properly which it didn't do before. I made the messages only get stored per easy-handle so that they can be independently killed easier without ruining the "master list". It makes the info_read() function slightly less beautiful as it has to scan for messages to return, but it makes removing individual handles a lot easier and less error prone.
2002-05-28Adjusted to make curl_multi_perform() work properly even whenDaniel Stenberg
curl_multi_fdset() is not used.
2002-05-28I trimmed the --help output slightly to better fit within 80 colsDaniel Stenberg
2002-05-28Cris Bailiff's CAPATH support addedDaniel Stenberg
2002-05-22new url, spell checkedDaniel Stenberg
2002-05-22since 7.9.7Daniel Stenberg
2002-05-21James Cone's little work-around for the strict errorDaniel Stenberg
2002-05-21When re-using a connection, make sure that we use the current host name asDaniel Stenberg
we might actually re-use a connection to a different host, when using proxies! This was what bug report #558888 was all about.
2002-05-21James Cone added the new CURL_NETRC_OPTION enumDaniel Stenberg
2002-05-21test suite mods for the netrc testing stuffDaniel Stenberg
2002-05-21James Cone added CURLOPT_NETRC / --netrc / --netrc-optional descriptionsDaniel Stenberg
2002-05-21Use the new CURLOPT_NETRC option and adds --netrc-optional, by James ConeDaniel Stenberg
2002-05-21James Cone's efforts to add another netrc parsing "mode"Daniel Stenberg
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