Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-06-03 | FIONBIO is in sys/ioctl.h on AIX | Daniel Stenberg | |
2005-06-02 | sigh, define TRUE if not already | Daniel Stenberg | |
2005-06-02 | William Ahern: | Daniel Stenberg | |
Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a read event can come back from poll() on a valid SOCK_DGRAM socket but recv(2) will still block. This patch doesn't ignore EAGAIN in read_udp_packets(), though maybe it should. (This patch was edited by Daniel Stenberg and a new configure test was added (imported from curl's configure) to properly detect what non-blocking socket approach to use.) | |||
2005-06-02 | William Ahern: | Daniel Stenberg | |
I'm not quite sure how this was happening, but I've been seeing PTR queries which seem to return empty responses. At least, they were empty when calling ares_expand_name() on the record. Here's a patch which guarantees to NUL-terminate the expanded name. The old behavior failed to NUL-terminate if len was 0, and this was causing strlen() to run past the end of the buffer after calling ares_expand_name() and getting ARES_SUCCESS as the return value. If q is not greater than *s then it's equal and *s is always allocated with at least one byte. | |||
2005-06-01 | specify the cares lib before the other libs, to make it build fine with mingw | Daniel Stenberg | |
- inspired by Tupone Alfredo's bug report (and patch) #1212940 | |||
2005-05-31 | Todd Kulesza reported a flaw in the proxy option, since a numerical IPv6 | Daniel Stenberg | |
address was not possible to use. It is now, but requires it written RFC2732-style, within brackets - which incidently is how you enter numerical IPv6 addresses in URLs. Test case 263 added to verify. | |||
2005-05-31 | added keywords | Daniel Stenberg | |
2005-05-29 | recent changes | Daniel Stenberg | |
2005-05-29 | Eric Cooper reported about a problem with HTTP servers that responds with | Daniel Stenberg | |
binary zeroes within the headers. They confused libcurl to do wrong so the downloaded headers become incomplete. The fix is now verified with test case 262. | |||
2005-05-27 | avoid the sensitive word as it looks bad in some people's eyes | Daniel Stenberg | |
2005-05-27 | Andrés García fixed a warning appearing on windows | Daniel Stenberg | |
2005-05-26 | provide the proper copyright texts for these | Daniel Stenberg | |
2005-05-25 | set LD_LIBRARY_PATH properly even when the openssl lib dir is found using | Daniel Stenberg | |
pkg-config | |||
2005-05-25 | silense a warning | Daniel Stenberg | |
2005-05-25 | minor rephrase | Daniel Stenberg | |
2005-05-25 | output the full usec when --trace-time is used | Daniel Stenberg | |
2005-05-25 | no more time/re-start of sockfilt, no more redirect of stdin/stdout when | Daniel Stenberg | |
talking to sockfilt | |||
2005-05-25 | added function for individual ftp slave kills | Daniel Stenberg | |
2005-05-25 | modified output logging, fixed the ftpslave killing | Daniel Stenberg | |
2005-05-25 | utilize the whole usec in the log and don't output to stderr if the logfile | Daniel Stenberg | |
can't be opened | |||
2005-05-25 | nicer raw logging and put code into (nicer) functions | Daniel Stenberg | |
2005-05-24 | don't restart sockfilt after only 5 seconds of inactivity | Daniel Stenberg | |
2005-05-24 | recent action | Daniel Stenberg | |
2005-05-24 | Andres Garcia's mode=text patch to make these do fine on Windows | Daniel Stenberg | |
2005-05-24 | add test case 261, response code 226 to TYPE | Daniel Stenberg | |
2005-05-24 | Now allow TYPE responses to be any 2xx code, and log if it isn't 200. | Daniel Stenberg | |
2005-05-22 | removed leftover debug message ("moo moo") | Daniel Stenberg | |
2005-05-21 | added keywords | Daniel Stenberg | |
2005-05-20 | added -nobuildconf | Daniel Stenberg | |
2005-05-20 | keywords added | Daniel Stenberg | |
2005-05-20 | shorter name | Daniel Stenberg | |
2005-05-20 | sum up | Daniel Stenberg | |
2005-05-20 | Add support for text mode on stdout tests as well, and add the mode=text | Daniel Stenberg | |
to the docs. | |||
2005-05-19 | include ctype.h for isdigit() | Daniel Stenberg | |
2005-05-19 | additional fix for the malformed URL fix of yday | Daniel Stenberg | |
2005-05-19 | removed duplicate | Daniel Stenberg | |
2005-05-18 | three fixes since 7.14.0 | Daniel Stenberg | |
2005-05-18 | Bug report #1204435 identified a problem with malformed URLs like | Daniel Stenberg | |
"http://somehost?data" as it added a slash too much in the request ("GET /?data/"...). Added test case 260 to verify. | |||
2005-05-18 | update | Daniel Stenberg | |
2005-05-18 | adjusted the strerror_r test more, use _REENTRANT instead of _THREAD_SAFE | Daniel Stenberg | |
when looking for the prototype | |||
2005-05-18 | The configure check for strerror_r() failed to detect the proper API at | Daniel Stenberg | |
times, like on my HP-UX 10.20 tests. And then lib/strerror.c badly assumed the glibc version if the posix define wasn't set (since it _had_ found a strerror_r). | |||
2005-05-18 | #15 is now fixed | Daniel Stenberg | |
2005-05-18 | clarified for GnuTLS | Daniel Stenberg | |
2005-05-18 | several updates | Daniel Stenberg | |
2005-05-18 | ignore resolve too | Daniel Stenberg | |
2005-05-18 | use less code and prevent compiler warning | Daniel Stenberg | |
2005-05-18 | removed the separate table with download links, and extended the curl site | Daniel Stenberg | |
list with all current mirrors | |||
2005-05-17 | scan for gmake and make to prefer gmake on systems that have it | Daniel Stenberg | |
2005-05-17 | Made test case 241 precheck that the given name resolves to an ipv6 address, | Daniel Stenberg | |
or the test is skipped. Ideally, we should let this test case go over a few frequently used IPv6 localhost aliases... | |||
2005-05-17 | Moved more generic functions to util.[ch] | Daniel Stenberg | |
Added resolve.c to simply resolve a given host name |