Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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 | 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 | 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 | (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-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 | 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 | Greg Hewgill found out 'contentlength' wasn't big enough to hold a large file! | 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 | removed the subchar variable, it was only set and never used | Daniel Stenberg | |
2004-02-12 | removed the ldaptext variable, it was only set and never used | Daniel Stenberg | |
2004-02-12 | removed the nth variable, it was only set and never used anyway | Daniel Stenberg | |
2004-02-12 | No longer receive the return code in ConnectionKillOne() that wasn't dealt | Daniel Stenberg | |
with anyway and thus caused picky compiler to warn. | |||
2004-02-11 | #if-check for SIGALRM before assuming it is present | Daniel Stenberg | |
2004-02-09 | Modified the default HTTP Accept: header to only be Accept: */* | Daniel Stenberg | |
2004-02-09 | Oops. I broke the flow with the previous commit. | Daniel Stenberg | |
2004-02-09 | some annoying compilers warn about "(void)foo;" lines so we avoid them | Daniel Stenberg | |
2004-02-09 | Tor Arntsen's patch for working around a notorious bug in the AIX5 | Daniel Stenberg | |
getaddrinfo() implementation. | |||
2004-02-06 | A custom Host: header is only considered if the request is not made by | Daniel Stenberg | |
following a location. After discussions with Tim Baker. | |||
2004-02-06 | The MIPSPro compiler complains on constructs such as "(void)foo;" so | Daniel Stenberg | |
we avoid it where possible. | |||
2004-02-06 | Make sure DynaGetFunction() returns a function pointer, not a data pointer. | Daniel Stenberg | |
The standards don't actually allow typecasts between data and functions so some picky compilers warn about this. | |||
2004-02-05 | Andrés García's updates | Daniel Stenberg | |
2004-02-05 | if an empty 'transfer-encoding:' header is provided, we switch off the | Daniel Stenberg | |
chunky coding of uploads | |||
2004-02-05 | Gisle Vanem fixed a windows compiler warning | Daniel Stenberg | |
2004-02-05 | options we get as longs need to be typecasted when assigned to prevent | Daniel Stenberg | |
picky compiler warnings | |||
2004-02-05 | fix return type to silence compiler warnings | Daniel Stenberg | |
2004-02-05 | prevent warning from that picky MIPSpro compiler | Daniel Stenberg | |
2004-02-05 | compiler warning fix, compare struct pointers of the same type | Daniel Stenberg | |
2004-02-05 | use the timeout options when waiting for the server to connect when using | Daniel Stenberg | |
PORT Provide better error messages to allow debugging if one if the ipv6-related name functions fail in the ftp_use_port() function. This might help us diagnose the problems on AIX. Also make sure getaddrinfo() uses NULL and not "0" for the service argument. | |||
2004-02-05 | hide the pack_hostent proto if ipv6 is enabled, as figured out by Tor Arntsen | Daniel Stenberg | |
2004-02-03 | the unused quit-function didn't pass a correct variable type to the | Daniel Stenberg | |
response reading function | |||
2004-02-03 | added the missing ares numerical version initialiser | Daniel Stenberg | |
2004-02-02 | undef accept before defining it, since AIX 5.2 has it as a define! | Daniel Stenberg | |
2004-02-02 | now provides c-ares version info in both version calls | Daniel Stenberg | |
2004-02-02 | adjusted to the modified ares_strerror() function | Daniel Stenberg | |
NOTE that this breaks ares-compatibility, we have now officially taken the turn into the c-ares path. We will now officially depend on c-ares for asynch name resolves. | |||
2004-02-02 | Dirk Manske fixed the ares usage even more. We could get a timeout from ares | Daniel Stenberg | |
as well, and when failing and not getting a timeout we now include the error message ares can provide us with. | |||
2004-02-02 | set the 'retry' bit to TRUE when the connection is about to be retried, | Daniel Stenberg | |
this allows the HTTP code to *not* return a failure just because no data has been received from the server | |||
2004-02-02 | clear the sockerror if no error was returned | Daniel Stenberg | |
2004-02-02 | we include errno.h to truly know if we have ECONNRESET or not | Daniel Stenberg | |
2004-02-02 | Timeout slow ares name lookups. This is based on the patch brought by | Daniel Stenberg | |
Dirk Manske, but modified by me. |