- Oct 16, 2008
-
-
Daniel Stenberg authored
are consecutive and with a 0x20 "distance" to the uppercase letter), since we do support EBCDIC as well. Thus I replaced the macro with a (larger) switch case. I better change the function name...
-
- Oct 15, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl uses strcasecmp() in multiple places where it causes failures when the Turkish locale is used. This is because 'i' and 'I' isn't the same letter so strcasecmp() on those letters are different in Turkish than in English (or just about all other languages). I thus introduced a totally new internal function in libcurl (called Curl_ascii_equal) for doing case insentive comparisons for english-(ascii?) style strings that thus will make "file" and "FILE" match even if the Turkish locale is selected.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2155496) pointing out an error case without a proper human-readable error message. When a read callback returns a too large value (like when trying to return a negative number) it would trigger and the generic error message then makes the proplem slightly different to track down. I've added an error message for this now.
-
- Oct 14, 2008
-
-
Yang Tse authored
-
- Oct 13, 2008
-
-
Daniel Stenberg authored
has already been dereferenced so it is bound to be valid. Pointed out to us by coverity.com
-
Yang Tse authored
-
Yang Tse authored
And on the other hand a message after setsockopt() certainly must use SOCKERRNO.
-
- Oct 12, 2008
-
-
Dan Fandrich authored
-
- Oct 11, 2008
- Oct 10, 2008
-
-
Dan Fandrich authored
-
Yang Tse authored
-
Patrick Monnerat authored
_ Update RPG binding accordingly. _ Fix new options comments.
-
Dan Fandrich authored
-
Yang Tse authored
-
Yang Tse authored
-
- Oct 09, 2008
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
because the struct is declared on the stack and not all members are used so we could just as well make struct with only struct members we actually need.
-
Dan Fandrich authored
systems supporting getifaddrs(). Also fixed a problem where an IPv6 address could be chosen instead of an IPv4 one for --interface when it involved a name lookup.
-
- Oct 08, 2008
-
-
http://curl.haxx.se/bug/view.cgi?id=2152270Daniel Stenberg authored
fixed a CURLINFO_REDIRECT_URL memory leak and an additional wrong-doing: Any subsequent transfer with a redirect leaks memory, eventually crashing the process potentially. Any subsequent transfer WITHOUT a redirect causes the most recent redirect that DID occur on some previous transfer to still be reported.
-
http://curl.haxx.se/bug/view.cgi?id=2111613Daniel Stenberg authored
eventually identified a flaw in how the multi_socket interface in some cases missed to call the timeout callback when easy interfaces are removed and added within the same millisecond.
-
Dan Fandrich authored
-
Yang Tse authored
-
Daniel Stenberg authored
curl_easy_setopt: CURLOPT_USERNAME and CURLOPT_PASSWORD that sort of deprecates the good old CURLOPT_USERPWD since they allow applications to set the user name and password independently and perhaps more importantly allow both to contain colon(s) which CURLOPT_USERPWD doesn't fully support.
-
Dan Fandrich authored
-
- Oct 07, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
a fresh connection to be made in such cases and the request retransmitted. This should fix test case 160. Added test case 1079 in an attempt to test a similar connection dropping scenario, but as a race condition, it's hard to test reliably.
-
Daniel Stenberg authored
the app re-used the handle to do a connection to host B and then again re-used the handle to host A, it would not update the info with host A's IP address (due to the connection being re-used) but it would instead report the info from host B.
-
Yang Tse authored
-
- Oct 03, 2008
- Oct 02, 2008
- Oct 01, 2008
-
-
Dan Fandrich authored
-
- Sep 30, 2008