aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-15Remove enable-thread / disable-thread configure option. These were only placeboYang Tse
options. The library is always built as thread safe as possible on every system.
2009-11-14Added '--configure' option to curl-config to display original configure ↵Claes Jakobsson
arguments when curl was built
2009-11-14Refactor how preprocessor symbol _THREAD_SAFE definition is done.Yang Tse
2009-11-14OpenSSL 0.9.7 or newer required for ENGINE_CTRL_GET_CMD_FROM_NAME definitionYang Tse
2009-11-14- Claes Jakobsson restored the configure functionality to detect NSS whenDaniel Stenberg
--with-nss is set but not "yes". I think we can still improve that to check for pkg-config in that path etc, but at least this patch brings back the same functionality we had before.
2009-11-14- Camille Moncelier added support for the file type SSL_FILETYPE_ENGINE forDaniel Stenberg
the client certificate. It also disable the key name test as some engines can select a private key/cert automatically (When there is only one key and/or certificate on the hardware device used by the engine)
2009-11-14- Constantine Sapuntzakis provided the fix that ensures that an SSL connectionYang Tse
won't be reused unless protection level for peer and host verification match.
2009-11-13Assume that getaddrinfo is thread safe, unless hard codedYang Tse
knowledge says the contrary or h_errno is not defined.
2009-11-13Related with the threadsafe capability of getaddrinfo:Yang Tse
- Constantine Sapuntzakis reported that Darwin 6.0 a.k.a. MAC OS X 10.2 and newer have a threadsafe getaddrinfo. - Fix Dragonfly BSD triplet detection. - In case the hard-coded knowledge says that getaddrinfo is threadsafe, an additional check is done to verify that h_errno is also defined. If h_errno isn't defined, we finally assume that it isn't threadsafe. Jamie Lokier provided the inspiration for this extra check.
2009-11-12AIX 5.2 and newer have threadsafe getaddrinfo.Yang Tse
Add some comments to better understand what the regex's pretend to achieve.
2009-11-12HP-UX 11.11 and later have threadsafe getaddrinfoYang Tse
2009-11-12Constantine Sapuntzakis patch for hostip.cYang Tse
No need for a separate variable ndns. The memory leak detection will detect code that fails to release a dns reference. The DEBUGASSERT will detect code that releases too many references.
2009-11-12Check if getaddrinfo is threadsafe when function check allows it to be usedYang Tse
2009-11-12Add missing variable initializationYang Tse
2009-11-12- libcurl-NSS now tries to reconnect with TLS disabled in case it detectsKamil Dudka
a broken TLS server. However it does not happen if SSL version is selected manually. The approach was originally taken from PSM. Kaspar Brand helped me to complete the patch. Original bug reports: https://bugzilla.redhat.com/525496 https://bugzilla.redhat.com/527771
2009-11-12- Kevin Baughman provided a fix preventing libcurl-NSS from crash on doublyKamil Dudka
closed NSPR descriptor. The issue was hard to find, reported several times before and always closed unresolved. More info at the RH bug: https://bugzilla.redhat.com/534176
2009-11-12Make hostip.c compile againYang Tse
2009-11-11Made the path to the binaries absoluteDan Fandrich
2009-11-11Add last change creditYang Tse
2009-11-11- Marco Maggi reported that compilation failed when configured --with-gssapiYang Tse
and GNU GSS installed due to a missing mutual exclusion of header files in the Kerberos 5 code path. He also verified that my patch worked for him.
2009-11-11NSS SSL connections are also blockingDaniel Stenberg
2009-11-11- Constantine Sapuntzakis posted bug #2891595Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=2891595) which identified how an entry in the DNS cache would linger too long if the request that added it was in use that long. He also provided the patch that now makes libcurl capable of still doing a request while the DNS hash entry may get timed out.
2009-11-11- Christian Schmitz noticed that the progress meter/callback was not properlyDaniel Stenberg
used during the FTP connection phase (after the actual TCP connect), while it of course should be. I also made the speed check get called correctly so that really slow servers will trigger that properly too.
2009-11-11Renamed fpGetNetworkParams and fpSystemFunction036 to avoid namespace ↵Yang Tse
pollution with static library
2009-11-11Add kernel32.libYang Tse
2009-11-10Mention last changesYang Tse
2009-11-10Reinstate copyright symbol lost in previous commitYang Tse
2009-11-10Make some strings different in resource file for debug or release buildsYang Tse
2009-11-10Ignore more subdirsYang Tse
2009-11-10Fix compiler warning: conditional expression is constantYang Tse
2009-11-10Sync linker and resource compiler options with Makefile.msvcYang Tse
2009-11-09Follow Makefile.msvc subdirectory naming scheme, and sync compiler optionsYang Tse
2009-11-09Updated MSVC makefile that allows building dynamic and staticYang Tse
c-ares libraries in debug and release flavours. Additionally each of the three sample programs is built against each of the four possible c-ares libraries, generating all this a total number of 12 executables and 4 libraries.
2009-11-09Test for USE_WINSOCK since it is more restrictive than WIN32Yang Tse
2009-11-09Make header inclusion depend on HAVE_*_H definitionYang Tse
2009-11-09Remove unneeded preprocessor directivesYang Tse
2009-11-07Joshua Kwan added paragraph 4.18 about file:// URLs on windows etcDaniel Stenberg
2009-11-05Adjust c-ares include paths for memory tracking enabled (--enable-curldebug) ↵Yang Tse
builds
2009-11-05- Dropped misleading timeouts in libcurl-NSS and made sure the SSL socket worksKamil Dudka
in non-blocking mode.
2009-11-05I removed leading 'curl' path on the 'curlbuild.h' include statement inYang Tse
curl.h, adjusting auto-makefiles include path, to enhance portability to OS's without an orthogonal directory tree structure such as OS/400.
2009-11-05avoid division by zeroYang Tse
2009-11-04- I fixed several problems with the transfer progress meter. It showed theDaniel Stenberg
wrong percentage for small files, most notable for <1000 bytes and could easily end up showing more than 100% at the end. It also didn't show any percentage, transfer size or estimated transfer times when transferring less than 100 bytes.
2009-11-04source files used by sample programsYang Tse
2009-11-04start over towards 7.19.8Daniel Stenberg
2009-11-04updated with names from the 7.19.7 release notesDaniel Stenberg
2009-11-04fix the find command lineDaniel Stenberg
2009-11-04avoid fiddling in the ares subdir since that isn't part of the releaseDaniel Stenberg
tarball
2009-11-04release coming upDaniel Stenberg
2009-11-04syntaxDaniel Stenberg
2009-11-04I have next to no hope of fixing more bugs before 7.19.7 so all are nowDaniel Stenberg
moved to 7.19.8. I removed the bugs already in KNOWN_BUGS (but they should of course still get fixed). Added three recent bugs. 7.19.8 is targetted to get shipped in Janurary 2010