Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-02-18 | Modified curl_accept() to take a 'void *' in the 2nd argument instead of | Daniel Stenberg | |
sockaddr *. This has the added benefit that source files that include memdebug.h doesn't have to know about "sockaddr". | |||
2004-02-18 | No longer uses the 'ret' variable in the plain ipv4-version of | Daniel Stenberg | |
my_getaddrinfo() (caused a warning by the IRIX MIPSPro compiler). Also clarified the situation for the 3-arg version of gethostbyname_r() with a huge comment. | |||
2004-02-18 | The --enable-debug option really requires this to be built as part of curl. | Daniel Stenberg | |
When using it, we now set the include path to better find the devel curl headers, and we check for the socklen_t type since the curl memdebug stuff needs it. | |||
2004-02-18 | simplified and better commented config.h include logic | Daniel Stenberg | |
2004-02-18 | Make sure dns cache timeout -1 really means forever, as it is documented to | Daniel Stenberg | |
be. Simply skip the pruning. | |||
2004-02-17 | fix the help text for --manual if built without manual | Daniel Stenberg | |
2004-02-17 | ignore more | Daniel Stenberg | |
2004-02-17 | memdebug build, 'make' no longer builds the demo tools | Daniel Stenberg | |
2004-02-17 | 'make all' also builds the demos | Daniel Stenberg | |
2004-02-17 | include ares_private.h to make sure we get the memdebug stuff included | Daniel Stenberg | |
2004-02-17 | If CURLDEBUG is set we use the libcurl internal memdebug system to track | Daniel Stenberg | |
memory leaks etc. | |||
2004-02-16 | only build adig and ahost if 'make demos' is used | Daniel Stenberg | |
2004-02-16 | support closesocket() for closing sockets as well, as then we can use this | Daniel Stenberg | |
code fine on ares! | |||
2004-02-16 | Make realloc() support NULL as pointer. Made to allow us to use these routines | Daniel Stenberg | |
to memdebug the ares stuff as well. | |||
2004-02-16 | item 24 fixed, edited a few issues | Daniel Stenberg | |
2004-02-16 | Make the 'areschannel' get created in the curl_easy_init() and re-use that | Daniel Stenberg | |
same channel during the whole curl handle's life until curl_easy_cleanup(). | |||
2004-02-16 | updates | Daniel Stenberg | |
2004-02-16 | verbose-fix, socks5-fix, dnscache-fix, configure-winmmlib-fix | Daniel Stenberg | |
2004-02-16 | Fix verbosconnect() when ipv6-enabled to not assume that conn->serv_addr | Daniel Stenberg | |
is a valid pointer, but instead always depend on the passed-in dns pointer. This happens to be NULL when the connection is re-used... | |||
2004-02-16 | removed usage of a silly macro instead of the actual functions memcpy | Daniel Stenberg | |
and memset | |||
2004-02-16 | Jeff Lawson pointed out that we need to check for a '5' in the version field | Daniel Stenberg | |
to properly work with SOCKS5 proxies. I also included some ascii art describing the SOCKS5 response, as RFC1928 describes. Jeff provided details in bug report #741841 and here: http://curl.haxx.se/mail/lib-2004-02/0181.html | |||
2004-02-15 | Andrés García added a check for lwinmm for Mingw/sys | Daniel Stenberg | |
2004-02-15 | Mark the dns entry 'inuse' properly even when used from the cache. This | Daniel Stenberg | |
seems to correct some host cache screw-ups I could reproduce. | |||
2004-02-15 | another case which should use CURLcode and not int | Daniel Stenberg | |
2004-02-15 | Use the was_iface variable when binding a socket locally, even if no | Daniel Stenberg | |
SO_BINDTODEVICE is present, to prevent compiler warnings about the variable | |||
2004-02-15 | bind interface and large file fixes | Daniel Stenberg | |
2004-02-15 | recent fixes | Daniel Stenberg | |
2004-02-15 | (void) functions we don't check the return code for | Daniel Stenberg | |
2004-02-15 | CURLcode/int cleanup to reduce IRIX warnings | Daniel Stenberg | |
Removed some dates/names in the comments. | |||
2004-02-15 | spell! | Daniel Stenberg | |
2004-02-15 | don't assume we can use gcc 2.96+ options | Daniel Stenberg | |
2004-02-13 | in the socks code, make sure we receive Curl_read results in ints and | Daniel Stenberg | |
Curl_write in CURLcode, to keep the picky compilers happy | |||
2004-02-13 | removed usage of unset variables (by a function that does nothing!) | Daniel Stenberg | |
2004-02-13 | return an int | Daniel Stenberg | |
2004-02-13 | return an int, not a CURLcode | Daniel Stenberg | |
2004-02-13 | use CURLcode, not int, prevents picky compilers to warn | Daniel Stenberg | |
2004-02-13 | the now and start variables were never really used | Daniel Stenberg | |
2004-02-13 | Ben Greear's SO_BINDTODEVICE patch that binds to a network interface "even | Daniel Stenberg | |
more" when the previous approach. Known to work on Linux, possibly on other platforms as well. | |||
2004-02-13 | Tor Arntsen made the ares build warnings etc get included as well | Daniel Stenberg | |
2004-02-13 | Greg Hewgill found out 'contentlength' wasn't big enough to hold a large file! | Daniel Stenberg | |
2004-02-13 | make the path const | Daniel Stenberg | |
2004-02-13 | I made the same fix here, that Tor already did in the ftp.c code. To make | Daniel Stenberg | |
sure this doesn't get weird on 64bit archs. | |||
2004-02-13 | Tor Arntsen's fix for the bad (64bit wise) typecast when using gmtime() | Daniel Stenberg | |
2004-02-12 | Make hostcache_fixoffset() take a long for offset, to fully work with 64bit | Daniel Stenberg | |
archs, also no longer typecast pointers to ints as that is a nono on 64bit systems. | |||
2004-02-12 | up to date with recent fixes | Daniel Stenberg | |
2004-02-12 | If no nroff tool is found, or if no command line switch to nroff that converts | Daniel Stenberg | |
a man page to text is found, we disable the built-in manual stuff to still be able to build. | |||
2004-02-12 | support configure --disable-manual | Daniel Stenberg | |
2004-02-12 | added --enable/disable-manual | Daniel Stenberg | |
2004-02-12 | no need to run make test in the data dir anymore | Daniel Stenberg | |
2004-02-12 | provide a source path to the servers to make them find the tests when run | Daniel Stenberg | |
outside the source dir, not needing any symlinks |