Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-26 | sockfilt.c: commit b44da5a82a follow-up | Yang Tse | |
2012-12-26 | sockfilt.c: fix some compiler warnings | Yang Tse | |
2012-12-26 | curl_multi_remove_handle: commit 0aabfd9963 follow-up | Yang Tse | |
2012-12-25 | lib556: enable VERBOSE to ease debugging on failures | Daniel Stenberg | |
2012-12-25 | socklift.c: Quick fix to re-add missing code | Marc Hoersken | |
2012-12-25 | socklift.c: Added select_ws function to support Windows | Marc Hoersken | |
WinSock select() does not support standard file descriptors, it can only check SOCKETs. The following function is an attempt to create a select() function with support for other handles. | |||
2012-12-25 | Enable tests 1503, 1504 and 1505 | Yang Tse | |
2012-12-25 | curl_multi_remove_handle: fix memory leak triggered with CURLOPT_RESOLVE | Yang Tse | |
2012-12-25 | Curl_hash_clean: OOM handling fix | Yang Tse | |
2012-12-25 | test 1504 and 1505: same as 1502 but with different cleanup sequences | Yang Tse | |
2012-12-24 | Curl_conncache_foreach: allow callback to break loop | Daniel Stenberg | |
... and have it take a proper 'struct connectdata *' as first argument | |||
2012-12-24 | pop3_doing: don't call pop3_dophase_done() if already failed | Daniel Stenberg | |
... it also clobbered the 'result' return value so that it wouldn't return the error back to the parent function properly, which broke test 809 when run with 'multi-always'. | |||
2012-12-23 | test 1503: same as 1502 but with a different cleanup sequence | Yang Tse | |
2012-12-23 | test 1502: OOM handling fixes | Yang Tse | |
2012-12-23 | curl_multi_wait: OOM handling fix | Yang Tse | |
2012-12-23 | curl_multi_wait: avoid an unnecessary memory allocation | Daniel Stenberg | |
2012-12-22 | runtests.pl: prepend $srcdir to HTTPTLS server config files path | Yang Tse | |
2012-12-21 | multi.c: OOM handling fix | Yang Tse | |
2012-12-21 | lib543.c: OOM handling fixes | Yang Tse | |
2012-12-21 | configure: add internal sanity check (warn only) on vars for makefiles | Yang Tse | |
2012-12-21 | SCP: relative path didn't work | Daniel Stenberg | |
When prefixing a path with /~/ it is supposed to be used relative to the user's home directory but it didn't work. Now we cut off the entire three byte sequenct "/~/" which seems to be how OpenSSH does it. Bug: http://curl.haxx.se/bug/view.cgi?id=1173 Reported by: Balaji Parasuram | |||
2012-12-21 | configure: LIBMETALINK_CFLAGS actually is LIBMETALINK_CPPFLAGS | Yang Tse | |
2012-12-20 | configure: add minimal sanity check on user provided CFLAGS and CPPFLAGS | Yang Tse | |
2012-12-19 | bundles connection caching: some out of memory handling fixes | Yang Tse | |
2012-12-19 | libntlmconnect.c: fix compiler warnings and OOM handling | Yang Tse | |
2012-12-19 | configure.ac: clear local test intended variables before use | Yang Tse | |
2012-12-18 | VC6 IDE: link with advapi32.lib when using WIN32 crypto API (md5.c) | Yang Tse | |
2012-12-17 | curl-functions.m4: improve gethostname arg 2 data type check | Yang Tse | |
2012-12-17 | setup_once.h: HP-UX specific 'bool', 'false' and 'true' definitions. | Yang Tse | |
Also reverts commit f254c59dc7 | |||
2012-12-16 | configure: check if compiler halts on function prototype mismatch | Yang Tse | |
2012-12-15 | warnless.c: fix compiler warnings | Yang Tse | |
2012-12-15 | curl-functions.m4: add gethostname arg 2 data type check and definition | Yang Tse | |
2012-12-14 | darwinssl: Fix implicit conversion compiler warnings | Nick Zitzmann | |
The Clang compiler found a few implicit conversion problems that have now been fixed. | |||
2012-12-14 | setup_once.h: HP-UX <sys/socket.h> issue workaround | Yang Tse | |
Issue: When building a 32bit target with large file support HP-UX <sys/socket.h> header file may simultaneously provide two different sets of declarations for sendfile and sendpath functions, one with static and another with external linkage. Given that we do not use mentioned functions we really don't care which linkage is the appropriate one, but on the other hand, the double declaration emmits warnings when using the HP-UX compiler and errors when using modern gcc versions resulting in fatal compilation errors. Mentioned issue is now fixed as long as we don't use sendfile nor sendpath functions. | |||
2012-12-14 | setup_once.h: refactor inclusion of <unistd.h> and <sys/socket.h> | Yang Tse | |
Inclusion of top two most included header files now done in setup_once.h | |||
2012-12-12 | setup_once.h: HP-UX specific TRUE and FALSE definitions | Yang Tse | |
Some HP-UX system headers require TRUE defined to 1 and FALSE to 0. | |||
2012-12-12 | gopher: #include cleanup | Daniel Stenberg | |
Remove all system file includes from this file as they're not needed Reported by: Dan Fandrich | |||
2012-12-11 | examples/simplessl.c: fix compiler warning | Yang Tse | |
2012-12-10 | examples/externalsocket.c: fix SunPro compilation issue | Yang Tse | |
2012-12-10 | examples/simplessl.c: fix compiler warning | Yang Tse | |
2012-12-10 | build: add bundles and conncache files to other build systems | Yang Tse | |
2012-12-10 | conncache: fix enumerated type mixed with another type | Yang Tse | |
2012-12-10 | examples/anyauthput.c: fix Tru64 compilation issue | Yang Tse | |
2012-12-08 | configure: fix cross pkg-config detection | Colin Watson | |
When cross-compiling, CURL_CHECK_PKGCONFIG was checking for the cross pkg-config using ${host}-pkg-config. The gold standard for doing this correctly is pkg-config's own macro, PKG_PROG_PKG_CONFIG. However, on the assumption that you have a good reason not to use that directly (reduced dependencies for maintainer builds?), the behaviour of cURL's version should at least match. PKG_PROG_PKG_CONFIG uses AC_PATH_TOOL, which ultimately ends up trying ${host_alias}-pkg-config; this is not quite the same as what cURL does, and may differ because ${host} has been run through config.sub. For instance, when cross-building to the armhf architecture on Ubuntu, ${host_alias} is arm-linux-gnueabihf while ${host} is arm-unknown-linux-gnueabihf. This may also have been the cause of the problem reported at http://curl.haxx.se/mail/lib-2012-04/0224.html. AC_PATH_TOOL is significantly simpler than cURL's current code, and dates back to well before the current minimum of Autoconf 2.57, so let's use it instead. | |||
2012-12-07 | Introducing a new persistent connection caching system using "bundles". | Linus Nielsen Feltzing | |
A bundle is a list of all persistent connections to the same host. The connection cache consists of a hash of bundles, with the hostname as the key. The benefits may not be obvious, but they are two: 1) Faster search for connections to reuse, since the hash lookup only finds connections to the host in question. 2) It lays out the groundworks for an upcoming patch, which will introduce multiple HTTP pipelines. This patch also removes the awkward list of "closure handles", which were needed to send QUIT commands to the FTP server when closing a connection. Now we allocate a separate closure handle and use that one to close all connections. This has been tested in a live system for a few weeks, and of course passes the test suite. | |||
2012-12-06 | runtests and friends: Do not add undefined values to @INC | Fabian Keil | |
On FreeBSD this fixes the warning: Use of uninitialized value $p in string eq at /usr/local/lib/perl5/5.14.2/BSDPAN/BSDPAN.pm line 36. | |||
2012-12-05 | Merge pull request #52 from isn-/master | Steve Holme | |
small compilation fix | |||
2012-12-05 | build: fix compilation with CURL_DISABLE_CRYPTO_AUTH flag | Stanislav Ivochkin | |
2012-12-05 | libtest: fix some compiler warnings | Yang Tse | |
2012-12-05 | examples: fix compilation issues - commit 7332a7cafb follow-up | Yang Tse | |