Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-04-14 | Curl_wait_for_resolv() could hang due to the bad timeout timer resolution and | Daniel Stenberg | |
some bad thinking on my part. | |||
2004-04-13 | Gisle Vanem's fix that makes the multi interface work on Windows again even | Daniel Stenberg | |
when not using ares. | |||
2004-04-13 | proper typecast to prevent compiler warning | Daniel Stenberg | |
2004-04-13 | remove an long time #defined struct member and use the actual "real" name | Daniel Stenberg | |
instead to make it easier to find/read | |||
2004-04-13 | Moved the 'tcp_nodelay' member to the proper 'UserDefined' struct within the | Daniel Stenberg | |
sessionhandle to make the duphandle() function work as supposed. Also tried to start document functions the doxygen way (in the headers of the functions). Can't make it work though... | |||
2004-04-12 | somewhat safer typecasting in case sizeof(long) != sizeof(void *) (is there | Daniel Stenberg | |
even such platforms?) | |||
2004-04-11 | David Byron's patch for MSVC builds with zlib | Daniel Stenberg | |
2004-04-09 | Dirk Manske increased the resolution for what the CURLINFO_*_TIME return. | Daniel Stenberg | |
2004-04-07 | getting only a 100 Continue response and nothing else, when talking HTTP, | Daniel Stenberg | |
is now treated as an error by libcurl | |||
2004-04-07 | renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_* | Daniel Stenberg | |
concept, and added lib/README.curlx to explain details about it | |||
2004-04-06 | New authentication code added, particularly noticable when doing POST or PUT | Daniel Stenberg | |
with Digest or NTLM. libcurl will now use HEAD to negotiate the authentication and when done perform the requested POST. | |||
2004-04-06 | the pack_hostent() proto isn't used/needed with ipv6 is enabled. | Daniel Stenberg | |
time to restructure this source file! | |||
2004-04-06 | Gisle Vanem's fix for bug item #927979 reported by Nathan O'Sullivan. | Daniel Stenberg | |
Good enough? | |||
2004-04-06 | Added the curl source header and changed some comments | Daniel Stenberg | |
2004-04-06 | Gisle Vanem caught me breaking the windows version of Curl_strerror() | Daniel Stenberg | |
2004-04-06 | provide these functions as curlx_* ones as this enables the curl app to | Daniel Stenberg | |
re-use these sources and functions for subsecond resolution timing | |||
2004-04-06 | up-to-date with reality | Daniel Stenberg | |
2004-04-06 | remove the general use of sys_nerr | Daniel Stenberg | |
2004-04-02 | Dirk Manske's feedback: | Daniel Stenberg | |
* bring back subsecond resolution to CURLINFO_TOTAL_TIME * Fix the Curl_pgrsDone() so that the final progress update is shown properly | |||
2004-04-02 | Andrés García's updated mingw makefiles | Daniel Stenberg | |
2004-04-01 | Dirk Manske's fix that makes sure we cancel the ares resolve when we time out | Daniel Stenberg | |
from a name resolve. Without this, we leak memory! | |||
2004-04-01 | removed my previously attempted fix for ares timeouts, not needed | Daniel Stenberg | |
2004-03-31 | Use the new HAVE_NI_WITHSCOPEID define instead of merely checking for the | Daniel Stenberg | |
existance of NI_WITHSCOPEID since some platforms have that define but still can't function with it set. | |||
2004-03-31 | Roy Shan fixed a case that prevented ares name resolve timeouts to occur. | Daniel Stenberg | |
2004-03-31 | Remove the elapsed time from the most recent select() only. | Daniel Stenberg | |
2004-03-31 | The asynch name resolve methods now all use CURL_TIMEOUT_RESOLVE for | Daniel Stenberg | |
the specific time to wait for a resolve. The definition is at the top of this source file. | |||
2004-03-31 | Dirk Manske found out the Curl_wait_for_resolv() timed out too early. | Daniel Stenberg | |
2004-03-31 | added include to fix warning | Daniel Stenberg | |
2004-03-31 | * Fixed a memory leak when doing repeated re-negotiations. | Daniel Stenberg | |
* Made the incoming line parser more forgiving to allow "name=contents" pairs where the contents isn't within double quotes. * Made the digest code return CURLDIGEST_BADALGO if a requested algorithm isn't supported by the code. | |||
2004-03-31 | Moved the NI_WITHSCOPEID magic #ifdef to the top of the file and made sure | Daniel Stenberg | |
we use the NIFLAGS properly on both places in the code that use getnameinfo(). | |||
2004-03-31 | Fixed how the user name is extracted from http_proxy environment variable | Daniel Stenberg | |
when set. | |||
2004-03-31 | Andrés García fixed a warning in the ioctlsocket() usage. | Daniel Stenberg | |
2004-03-31 | CURLDIGEST_BADALGO is a new return code from the digest code | Daniel Stenberg | |
2004-03-30 | typecast setsockopt()'s 4th argument to void * to make compilers complain | Daniel Stenberg | |
less | |||
2004-03-30 | adjusted to the new dns cache function to hide more hostip internals | Daniel Stenberg | |
2004-03-30 | Lots of comments added an clarified. Added timeout for the ares version | Daniel Stenberg | |
of Curl_is_resolved() to address Roy Shan's reported problem. | |||
2004-03-30 | added stale boolean to the digest struct | Daniel Stenberg | |
2004-03-30 | first attempt to support stale=true | Daniel Stenberg | |
2004-03-30 | if 0'ed out a code section that uses __FUNCTION__ etc, used for debugging | Daniel Stenberg | |
the new "fail with auth" code | |||
2004-03-30 | init the dns pointer to NULL for clarity | Daniel Stenberg | |
2004-03-30 | added more comments for what the functions return | Daniel Stenberg | |
2004-03-30 | David Byron made CURLOPT_FAILONERROR work with authentications such as NTLM | Daniel Stenberg | |
or Digest. | |||
2004-03-30 | 'authdone' was added to the sessionhandle and thus was removed from the | Daniel Stenberg | |
argument to the NTLM function(s) | |||
2004-03-30 | David Byron added 'authdone' to the SessionHandle. | Daniel Stenberg | |
2004-03-29 | The select() timeout is better not static since some implementation actually | Daniel Stenberg | |
might change it. I don't *think* it does it when the timeout is 0,0 but it is better to be sure... | |||
2004-03-29 | Gisle Vanem's djgpp/MS-DOS updates | Daniel Stenberg | |
2004-03-29 | re-indented to use curl-standard source formatting | Daniel Stenberg | |
2004-03-29 | netinet/tcp.h may require netinet/in.h to be include before | Daniel Stenberg | |
2004-03-27 | Tor fixed a left-over from the ip argument to setnodelay | Daniel Stenberg | |
2004-03-26 | Gisle Vanem: | Daniel Stenberg | |
A patch to bypass MS' sillyness with regard to IPv6 and getaddrinfo(). The CURLDEBUG part is to avoid redefinition warning caused by memdebug.h. If ENABLE_IPV6 isn't enabled, it doesn't matter since we never call getaddrinfo(). Allthough we could to support weird protocols like SOCK_RDM that Win-2K/XP has. |