Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2002-05-03 | made the DEBUGFUNCTION get called properly on a few more places, especially | Daniel Stenberg | |
for DATA_IN and DATA_OUT. | |||
2002-05-03 | make sure our own printf() clones are used | Daniel Stenberg | |
2002-05-03 | -D now stores all headers to the same file if multiple URLs are given on the | Daniel Stenberg | |
command line! | |||
2002-05-02 | clarified that you must keep the variables that you point to! | Daniel Stenberg | |
2002-05-02 | spell | Daniel Stenberg | |
2002-05-02 | use and set the fd_set pointers instead of the actual values, as then we | Daniel Stenberg | |
work properly with the multi interface when the user has provided the fd_sets! | |||
2002-05-02 | added two pointers to the fd_set variables to read/write from, as sometimes | Daniel Stenberg | |
we need to point to user-provided fd_sets | |||
2002-05-02 | return CURLM_CALL_MULTI_PERFORM in one more case, and check return code | Daniel Stenberg | |
from malloc() | |||
2002-05-02 | make sure the dns cache pointers in the easy handles are NULLed | Daniel Stenberg | |
2002-05-02 | Hanno Kranzhoff noticed we didn't properly reset the download/upload counters | Daniel Stenberg | |
before transfers, when doing multiple ones on the same handle. | |||
2002-05-01 | Jacky Lam's fix to make the realloc() of the hostent data work properly | Daniel Stenberg | |
even when the realloc() actually gets a new memory block | |||
2002-04-30 | how to set more than one cookie | Daniel Stenberg | |
2002-04-27 | implemented curl_multi_info_read() which I had forgotten before! | Daniel Stenberg | |
2002-04-27 | updated some docs | Daniel Stenberg | |
2002-04-27 | clarified | Daniel Stenberg | |
2002-04-27 | one added, one edited | Daniel Stenberg | |
2002-04-27 | shorter introduction | Daniel Stenberg | |
2002-04-27 | updated | Daniel Stenberg | |
2002-04-27 | Added BINDINGS, lists all available libcurl bindings as of this date. | Daniel Stenberg | |
2002-04-27 | fixes on rainy saturday in the end of April, 2002 | Daniel Stenberg | |
2002-04-27 | Fixed the FTP response reader to deal with timeouts better. Previously it | Daniel Stenberg | |
would reset the timeout for each incoming data, which would make veeery slow responses be allowed to take even more time since the timeout would only be reached if the time between two received data chunks was longer than the set timeout value... | |||
2002-04-27 | (Curl_GetFTPResponse) moved some code to only get performed when actually | Daniel Stenberg | |
needed | |||
2002-04-27 | Now uses Curl_ as prefix for internal global symbols. curl_ should only be | Daniel Stenberg | |
used for "exported" globals. | |||
2002-04-27 | DNC cache prune crash removed, made the name spacing follow the general | Daniel Stenberg | |
rule: "Curl_" prefix for library-wide private symbols, "curl_" is for exported symbols. | |||
2002-04-26 | openbsd on Alpha was no problemos | Daniel Stenberg | |
2002-04-26 | test suite portability fix | Daniel Stenberg | |
2002-04-26 | handles much larger POSTs, replaced snprintf() with sprintf() since this | Daniel Stenberg | |
needs to be more portable and in the test server we can skip the extra safety | |||
2002-04-26 | another week of changes | Daniel Stenberg | |