- Jul 01, 2008
-
-
Yang Tse authored
-
- Jun 30, 2008
-
-
Yang Tse authored
-
Daniel Stenberg authored
which output the range using a signed variable where it should rather use unsigned.
-
Daniel Stenberg authored
header
-
Daniel Stenberg authored
not posix or anything and thus c-ares failed to build on hurd (and possibly elsewhere). The define was also somewhat artificially used in the windows port. Now, I instead rewrote the use of gethostbyname to enlarge the host name buffer in case of need and totally avoid the use of the MAXHOSTNAMELEN define. I thus also removed the defien from the namser.h file where it was once added for the windows build. I also fixed init_by_defaults() function to not leak memory in case if error.
-
Daniel Stenberg authored
-
- Jun 29, 2008
-
-
Yang Tse authored
-
Yang Tse authored
some systems" (http://curl.haxx.se/bug/view.cgi?id=1999181). The problem was that the configure script did not use the _POSIX_MONOTONIC_CLOCK feature test macro when checking monotonic clock availability. This is now fixed and the monotonic clock will not be used unless the feature test macro is defined with a value greater than zero indicating always supported.
-
- Jun 26, 2008
-
-
Daniel Stenberg authored
-
Dan Fandrich authored
Fixed a file handle leak in the command line client if more than one --stderr option was given.
-
- Jun 24, 2008
-
-
Daniel Stenberg authored
-
- Jun 22, 2008
-
-
Daniel Stenberg authored
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487567) pointing out that libcurl used Content-Range: instead of Range when doing a range request with --head (CURLOPT_NOBODY). This is now fixed and test case 1032 was added to verify.
-
Dan Fandrich authored
is not ANSI C, just a common extension. This caused problems on at least Open Watcom C.
-
- Jun 21, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
- Jun 20, 2008
-
-
Yang Tse authored
enough at detecting compilation errors or at least it has been properly configured to do so. Configuration heavily depends on this capability, so if this compiler sanity check fails the configuration process will now fail.
-
Daniel Stenberg authored
handshake with a SSLv2 server, and it turned out to be because it didn't recognize the cipher named "rc4-md5". In our list that cipher was named plainly "rc4". I've now added rc4-md5 to work as an alias as Phil reported that it made things work for him again.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
crashed libcurl. This is now addressed by making sure we use "plain send" internally when doing the socks handshake instead of the Curl_write() function which is designed to use the "target" protocol. That's then SCP or SFTP in this case. I also took the opportunity and cleaned up some ssh- related #ifdefs in the code for readability.
-
- Jun 19, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
libcurl to not tell the app properly when a socket was closed (when the name resolve done by c-ares is done) and then immediately re-created and put to use again (for the actual connection). Since the closure will make the "watch status" get lost in several event-based systems libcurl will need to tell the app about this close/re-create case.
-
Daniel Stenberg authored
multi interface with pipelining enabled as it would wrongly check for, detect and close "dead connections" even though that connection was already in use!
-
Daniel Stenberg authored
number of entries in a provided table is doomed to fail in the long run. Now we use the NUM_OF_CIPHERS define instead to figure out the amount.
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
Dan Fandrich authored
-
Dan Fandrich authored
-
- Jun 18, 2008
-
-
Daniel Stenberg authored
always fire up a new connection rather than using the existing one when the multi interface is used. Original bug report: https://bugzilla.redhat.com/show_bug.cgi?id=450140
-
Daniel Stenberg authored
the check_issuer_cert() proto
-
Daniel Stenberg authored
warning in the code though but we need NSS' base64.h header for that and we don't currently have a suitable way to include it as our own base64.h header kind of "blocks" it.
-
Yang Tse authored
AC_FOO_IFELSE macros, otherwise temp files are not removed. Identation adjustment.
-
- Jun 13, 2008
-
-
Daniel Stenberg authored
is for the TCP connect. I changed it to TIMER_PRETRANSFER which seems to be what was intended here.
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
- Jun 12, 2008
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
in regard to C standard, third party libraries and operating systems etc.
-
- Jun 11, 2008
-
-
Daniel Stenberg authored
libraries are supported. Starting now, each underlying SSL library support code does a set of defines for the 16 functions the generic layer (sslgen.c) uses (all these new function defines use the prefix "curlssl_"). This greatly simplified the generic layer in readability by involving much less #ifdefs and other preprocessor stuff and should make it easier for people to make libcurl work with new SSL libraries. Hopefully I can later on document these 16 functions somewhat as well. I also made most of the internal SSL-dependent functions (using Curl_ssl_ prefix) #defined to nothing when no SSL support is requested - previously they would unnecessarily call mostly empty functions.
-