Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-28 | Adjusted to make curl_multi_perform() work properly even when | Daniel Stenberg | |
curl_multi_fdset() is not used. | |||
2002-05-28 | I trimmed the --help output slightly to better fit within 80 cols | Daniel Stenberg | |
2002-05-28 | Cris Bailiff's CAPATH support added | Daniel Stenberg | |
2002-05-22 | new url, spell checked | Daniel Stenberg | |
2002-05-22 | since 7.9.7 | Daniel Stenberg | |
2002-05-21 | James Cone's little work-around for the strict error | Daniel Stenberg | |
2002-05-21 | When re-using a connection, make sure that we use the current host name as | Daniel 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-21 | James Cone added the new CURL_NETRC_OPTION enum | Daniel Stenberg | |
2002-05-21 | test suite mods for the netrc testing stuff | Daniel Stenberg | |
2002-05-21 | James Cone added CURLOPT_NETRC / --netrc / --netrc-optional descriptions | Daniel Stenberg | |
2002-05-21 | Use the new CURLOPT_NETRC option and adds --netrc-optional, by James Cone | Daniel Stenberg | |
2002-05-21 | James Cone's efforts to add another netrc parsing "mode" | Daniel Stenberg | |
2002-05-21 | five new test cases for the netrc parsing | Daniel Stenberg | |
2002-05-21 | maprintf() and vmaprintf() now work better when printfing "%s" with an | Daniel Stenberg | |
empty string | |||
2002-05-21 | corrected see also | Daniel Stenberg | |
2002-05-21 | 3.14 added, javascript support | Daniel Stenberg | |
2002-05-21 | Added source header and made it clear that this code was originally donated | Daniel Stenberg | |
to us by Juergen Wilke. | |||
2002-05-21 | ASN1 files don't work for the *chain_file(), make them use the previous | Daniel Stenberg | |
version | |||
2002-05-21 | return type CURLFORMcode instead of plain int | Daniel Stenberg | |
2002-05-21 | curl_formadd() now returns 'CURLFORMcode' instead of int, to better enable | Daniel Stenberg | |
checking for particular errors. curl/curl.h defines the errros | |||
2002-05-20 | Roland Zimmermann's hint, we use SSL_CTX_use_certificate_chain_file() instead | Daniel Stenberg | |
of the previous one that used SSL_CTX_use_certificate_file() | |||
2002-05-17 | removed compiler warnings | Daniel Stenberg | |
2002-05-17 | FreeBSD needs sys/types.h before we include sys/select.h that was included | Daniel Stenberg | |
mainly for AIX in the first place...! As reported in bug report #556869 | |||
2002-05-17 | Fixes bug report #556930 - we need to make sure that the data is all right | Daniel Stenberg | |
after we've realloc() the packed hostent struct. | |||
2002-05-15 | Added item 4.10 after talks with Russ Freeman | Daniel Stenberg | |
2002-05-13 | 7.9.7 commit | Daniel Stenberg | |
2002-05-13 | we don't need win32sockets.c anymore, we support this internally | Daniel Stenberg | |
2002-05-13 | fopen.c added, a fopen() style emulation for URL reading | Daniel Stenberg | |
2002-05-12 | Friday's fixes | Daniel Stenberg | |
2002-05-10 | AIX 5.1 | Daniel Stenberg | |
2002-05-10 | Kein Roth made --trace-ascii look even better, and make OD 0A occurances | Daniel Stenberg | |
get output as plain newlines. | |||
2002-05-10 | AIX wants sys/select.h for the fd_set stuff in curl/multi.h, and even though | Daniel Stenberg | |
it is a bit ugly work-around to add this here, it is still a working work- around! ;-) | |||
2002-05-07 | Patrick Smith's contributed docs improvements for when NLST is used by | Daniel Stenberg | |
curl... | |||
2002-05-07 | 7.9.7-pre2 | Daniel Stenberg | |
2002-05-07 | Added --trace-ascii support | Daniel Stenberg | |
2002-05-07 | --trace-ascii and --junk-session-cookies were added | Daniel Stenberg | |
2002-05-07 | support for ingoring session cookies added | Daniel Stenberg | |
2002-05-06 | the code for case CURLOPT_DEBUGDATA code broke the CURLOPT_STDERR one! | Daniel Stenberg | |
2002-05-06 | recent fiddling | Daniel Stenberg | |
2002-05-06 | CURLOPT_FILE and CURLOPT_INFILE have better aliases now: | Daniel Stenberg | |
CURLOPT_WRITEDATA and CURLOPT_READDATA | |||
2002-05-06 | Added multi-post.c, based on the source file posted by Gustaf Hui | Daniel Stenberg | |
2002-05-05 | Better 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 function | Daniel Stenberg | |
2002-05-05 | added -Z/--max-redirs and --trace | Daniel Stenberg | |
changed order of a few others to keep the a-z order | |||
2002-05-04 | made VERBOSE output more like it used to be, HEADER_IN is thus also ignored | Daniel Stenberg | |
by the internal debugfunction callback | |||
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-03 | fixed return code | Daniel Stenberg | |
2002-05-03 | another week of changes | Daniel Stenberg | |
2002-05-03 | - Added "--trace [file]" to the command line tool. It makes a very detailed | Daniel 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. |