Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2004-03-26 | check for netinet/tcp.h precense before actually including it | Daniel Stenberg | |
2004-03-26 | removed the ip number from the notcpdelay function | Daniel Stenberg | |
2004-03-25 | only output one line about the nodelay even if it fails | Daniel Stenberg | |
2004-03-25 | win32 doesn't need and even doesn't build if we extern declare sys_nerr | Daniel Stenberg | |
2004-03-25 | include the strerror.h file without curl_ prefix | Daniel Stenberg | |
2004-03-25 | strerror without prefix | Daniel Stenberg | |
2004-03-25 | cut off 'curl_' from the strerror file names | Daniel Stenberg | |
2004-03-25 | tcp-nodelay patch by Joe Halpin | Daniel Stenberg | |
2004-03-25 | so there are at least two different strerror_r() versions and our brand | Daniel Stenberg | |
new configure script detects them and now this code acts according to what API that was detected | |||
2004-03-25 | added curl_strerror to the build | Daniel Stenberg | |
2004-03-25 | extern declare the sys_nerr variable. Required on Solaris at least. | Daniel Stenberg | |
2004-03-25 | Always include setup.h as the first header file. | Daniel Stenberg | |
Added a more verbose comment about what strerror_r() can set errno to in case of failure. This file still doesn't build on Solaris due to a missing 'sys_nerr' symbol. | |||
2004-03-24 | missed the new header file | Daniel Stenberg | |
2004-03-24 | Gisle Vanem's fix to replace the bad use of strerror(). This introduces | Daniel Stenberg | |
Curl_strerror() that attempts to be thread-safe _and_ works on Windows too! | |||
2004-03-24 | new header file - for Curl_strerror() | Daniel Stenberg | |
2004-03-23 | keep current_speed as an curl_off_t for better precision at higher speeds | Daniel Stenberg | |
if large file support is available | |||
2004-03-23 | switch() on the right variable! | Daniel Stenberg | |
2004-03-23 | curl_strequal() returns int, keep return variables in an int | Daniel Stenberg | |
2004-03-23 | make the variables that hold the result of strlen() size_t | Daniel Stenberg | |
2004-03-23 | stricter variable type usage | Daniel Stenberg | |
2004-03-23 | variable type usage cleanup to please picky compilers | Daniel Stenberg | |
2004-03-23 | get strlen() results in a size_t, delete 'register' | Daniel Stenberg | |
2004-03-23 | made time2str() use longs internally instead to prevent compiler warnings | Daniel Stenberg | |
when converting to ints | |||
2004-03-23 | added explicit typecasts to prevent compiler warnings on variable conversions | Daniel Stenberg | |
2004-03-23 | If localbind fails, provide a more portable error message. | Daniel Stenberg | |
2004-03-23 | it actually fits to make a NNNd NNh display so this can be used up to | Daniel Stenberg | |
999 days | |||
2004-03-23 | Fixed the time fields no never get wider than 8 letters. They can now switch | Daniel Stenberg | |
to a "days + hours" or even "just days" display if the time value is very large. I also switched several calculations over to fixed-point instead of the previous doubles. |