Dan Fandrich [Wed, 14 Feb 2007 18:13:16 +0000 (18:13 +0000)]
Don't bother adding a library path of /usr/lib in curl-config --libs
Yang Tse [Wed, 14 Feb 2007 17:38:41 +0000 (17:38 +0000)]
Oops, missing argument separator comma
Yang Tse [Wed, 14 Feb 2007 14:11:47 +0000 (14:11 +0000)]
in debug messages also show error description
Yang Tse [Wed, 14 Feb 2007 13:46:08 +0000 (13:46 +0000)]
compiler warning fix
Yang Tse [Wed, 14 Feb 2007 13:31:37 +0000 (13:31 +0000)]
avoid using funtion isblank() and just use our ISBLANK
macro to provide this functionality on all platforms
Yang Tse [Wed, 14 Feb 2007 04:45:30 +0000 (04:45 +0000)]
compiler warning fix
Dan Fandrich [Wed, 14 Feb 2007 03:00:08 +0000 (03:00 +0000)]
Fixed the problem of curl-config --libs specifying unneeded libraries
dependencies to applications.
Yang Tse [Wed, 14 Feb 2007 00:28:01 +0000 (00:28 +0000)]
enhance HTTP server request input writing,
retrying upon EINTR errors.
Daniel Stenberg [Tue, 13 Feb 2007 22:50:16 +0000 (22:50 +0000)]
ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' on
the left side of @ to make it short(er).
Daniel Stenberg [Tue, 13 Feb 2007 21:21:44 +0000 (21:21 +0000)]
- Robert A. Monat made libcurl build fine with VC2005 - it doesn't have
gmtime_r() like the older VC versions. He also made use of some machine-
specific defines to differentiate the "OS" define.
Dan Fandrich [Tue, 13 Feb 2007 19:59:58 +0000 (19:59 +0000)]
Added last-resort dynamic library names.
Yang Tse [Tue, 13 Feb 2007 19:01:03 +0000 (19:01 +0000)]
check for isblank() at configuration stage. If not available
provide a suitable replacement for use in our ISBLANK macro
Yang Tse [Tue, 13 Feb 2007 18:02:20 +0000 (18:02 +0000)]
use our own ISUPPER and ISLOWER macros
Yang Tse [Tue, 13 Feb 2007 17:47:27 +0000 (17:47 +0000)]
use our own ISBLANK macro
Yang Tse [Tue, 13 Feb 2007 17:28:40 +0000 (17:28 +0000)]
use our own ISSPACE macro
Yang Tse [Tue, 13 Feb 2007 16:14:25 +0000 (16:14 +0000)]
Fix c-ares failing to get the search sequence of /etc/hosts and
DNS from /etc/nsswitch.conf, /etc/host.conf or /etc/svc.conf when
/etc/resolv.conf did not exist or was unable to read it.
Yang Tse [Tue, 13 Feb 2007 02:30:31 +0000 (02:30 +0000)]
compiler warning fix
Daniel Stenberg [Mon, 12 Feb 2007 22:41:43 +0000 (22:41 +0000)]
mention today's LIBCURL_TIMESTAMP fix
Daniel Stenberg [Mon, 12 Feb 2007 22:32:37 +0000 (22:32 +0000)]
Rob Crittenden added support for NSS (Network Security Service) for the
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/
Daniel Stenberg [Mon, 12 Feb 2007 21:13:47 +0000 (21:13 +0000)]
- Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent
to the debug callback.
- Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and
CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's
internal decoding of content or transfer encoded content. This may be
preferable in cases where you use libcurl for proxy purposes or similar. The
command line tool got a --raw option to disable both at once.
Daniel Stenberg [Mon, 12 Feb 2007 12:17:11 +0000 (12:17 +0000)]
Jeff Pohlmeyer for his bug fix today, but too specific to get desrcibed
as a bugfix here ;-)
Daniel Stenberg [Mon, 12 Feb 2007 12:15:41 +0000 (12:15 +0000)]
- Jeff Pohlmeyer fixed a flaw in curl_multi_add_handle() when adding a handle
that has an easy handle present in the "closure" list pending closure.
Daniel Stenberg [Mon, 12 Feb 2007 11:53:35 +0000 (11:53 +0000)]
When building tarballs, we also set the timestamp of the generated package. This is meant
to primarily be used for the autobuilds to know from what point in time a particular tarball
is, and thus what changes it contains (or not).
Daniel Stenberg [Sun, 11 Feb 2007 10:10:08 +0000 (10:10 +0000)]
updated with recent info and cut out some of the more speculating parts and
instead focus on explaining on how the libs differ from each other
Daniel Stenberg [Sun, 11 Feb 2007 09:55:17 +0000 (09:55 +0000)]
updated
Daniel Stenberg [Sat, 10 Feb 2007 23:24:18 +0000 (23:24 +0000)]
darned tab completion on a late evening... :-P
Daniel Stenberg [Sat, 10 Feb 2007 23:23:42 +0000 (23:23 +0000)]
minor updates to reflect reality better
Daniel Stenberg [Sat, 10 Feb 2007 12:07:46 +0000 (12:07 +0000)]
file:// transfers are blocking
Yang Tse [Fri, 9 Feb 2007 12:41:57 +0000 (12:41 +0000)]
Include both testutil.c and testutil.h, and not just testutil.c, in the
list of source files for those tests that use it. Otherwise testutil.h
might not be found by the compiler.
Yang Tse [Fri, 9 Feb 2007 01:17:24 +0000 (01:17 +0000)]
Some tests were using functions curlx_tvnow and curlx_tvdiff which are not
part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx
The documented way of using them would be to use timeval.c as a source code file.
The above described method works very well when statically linking libcurl and
apps, test programs, but has several drawbacks when you build a true shared
libcurl (i.e. Name space clash at linkage stage as functions are defined more
than once. Windows makefiles are not capable of handling this system of
source-level sharing)
So...
Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff
which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this
we avoid the above described problems, and the code in the testsuite does not
impose the need to keep those functions public in libcurl even when not part of
the API.
Yang Tse [Fri, 9 Feb 2007 01:11:14 +0000 (01:11 +0000)]
Some tests were using functions curlx_tvnow and curlx_tvdiff which are not
part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx
The documented way of using them would be to use timeval.c as a source code file.
The above described method works very well when statically linking libcurl and
apps, test programs, but has several drawbacks when you build a true shared
libcurl (i.e. Name space clash at linkage stage as functions are defined more
than once. Windows makefiles are not capable of handling this system of
source-level sharing)
So...
Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff
which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this
we avoid the above described problems, and the code in the testsuite does not
impose the need to keep those functions public in libcurl even when not part of
the API.
Yang Tse [Thu, 8 Feb 2007 17:01:40 +0000 (17:01 +0000)]
compiler warning fix
Yang Tse [Thu, 8 Feb 2007 00:28:21 +0000 (00:28 +0000)]
use macro AC_AIX to define `_ALL_SOURCE', if on AIX.
Daniel Stenberg [Wed, 7 Feb 2007 22:00:33 +0000 (22:00 +0000)]
SCP upload done non-blocking
Yang Tse [Wed, 7 Feb 2007 18:13:40 +0000 (18:13 +0000)]
use same AIX XLC compiler options as curl's
Yang Tse [Wed, 7 Feb 2007 17:34:30 +0000 (17:34 +0000)]
AIX xlc has to have strict aliasing turned off. If not, the optimizer
assumes that pointers can only point to an object of the same type.
Yang Tse [Wed, 7 Feb 2007 15:15:15 +0000 (15:15 +0000)]
*) Remove duplicate declaration of TYPE_SOCKADDR_STORAGE
*) Update CURL_CC_DEBUG_OPTS from curl's script
Gisle Vanem [Tue, 6 Feb 2007 19:14:33 +0000 (19:14 +0000)]
INADDR_NONE no longer used.
Gisle Vanem [Tue, 6 Feb 2007 19:12:38 +0000 (19:12 +0000)]
Added debug option ('-d') for Watt-32 programs.
Gisle Vanem [Tue, 6 Feb 2007 19:09:57 +0000 (19:09 +0000)]
Added HAVE_PROCESS_H for DOS/Win32.
Include <process.h> for getpid() in ares_init.c.
Gisle Vanem [Tue, 6 Feb 2007 19:00:42 +0000 (19:00 +0000)]
Fix compiler warning.
Gisle Vanem [Tue, 6 Feb 2007 18:56:34 +0000 (18:56 +0000)]
Include <sys/time.h> and <unistd.h> inside HAVE_x_H.
Added 'optind' and 'optarg' as in adig.c.
Gisle Vanem [Tue, 6 Feb 2007 18:54:35 +0000 (18:54 +0000)]
Include <sys/time.h> and <unistd.h> inside HAVE_x_H.
Yang Tse [Tue, 6 Feb 2007 18:08:11 +0000 (18:08 +0000)]
fix for millisecond resolution timeouts
Yang Tse [Tue, 6 Feb 2007 18:06:37 +0000 (18:06 +0000)]
compiler warning fix
Daniel Stenberg [Tue, 6 Feb 2007 16:07:15 +0000 (16:07 +0000)]
non-blocking SSH stuff
Daniel Stenberg [Tue, 6 Feb 2007 15:41:19 +0000 (15:41 +0000)]
read SFTP with the non-blocking API
Yang Tse [Tue, 6 Feb 2007 03:31:27 +0000 (03:31 +0000)]
compiler warning fix
Daniel Stenberg [Mon, 5 Feb 2007 22:51:32 +0000 (22:51 +0000)]
- Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
timeouts with millisecond resolution instead. The only restriction to that
is the alarm() (sometimes) used to abort name resolves as that uses full
seconds. I fixed the FTP response timeout part of the patch.
Internally we now count and keep the timeouts in milliseconds but it also
means we multiply set timeouts with 1000. The effect of this is that no
timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
equals 24.86 days. We probably couldn't before either since the code did
*1000 on the timeout values on several places already.
Gisle Vanem [Mon, 5 Feb 2007 11:32:18 +0000 (11:32 +0000)]
Remove '-Dselect=select_s'. Remove depend.dj-
Yang Tse [Mon, 5 Feb 2007 04:10:32 +0000 (04:10 +0000)]
compiler warning fix
Yang Tse [Mon, 5 Feb 2007 02:43:21 +0000 (02:43 +0000)]
cookie expiry date in several test cases set to year 2030/2035
Yang Tse [Mon, 5 Feb 2007 02:38:25 +0000 (02:38 +0000)]
Year 2038 has its own problems (32 bit integer overflow).
So cookie expiration date is lowered to expire at most in 2035.
Gisle Vanem [Sun, 4 Feb 2007 13:34:34 +0000 (13:34 +0000)]
Use correct 3rd argument for ioctlsocket() under Watt-32.
Gisle Vanem [Sun, 4 Feb 2007 13:02:31 +0000 (13:02 +0000)]
Use correct calling convention.
Gisle Vanem [Sun, 4 Feb 2007 12:50:53 +0000 (12:50 +0000)]
Added DllMain() function for Watcom.
Gisle Vanem [Sun, 4 Feb 2007 12:18:22 +0000 (12:18 +0000)]
Suppress warning "'nread' might be used uninitialized in this function".
Gisle Vanem [Sun, 4 Feb 2007 12:12:02 +0000 (12:12 +0000)]
Constify argument to suburl(). Remove trailing space.
Daniel Stenberg [Sat, 3 Feb 2007 21:35:11 +0000 (21:35 +0000)]
some additional info
Yang Tse [Sat, 3 Feb 2007 13:05:28 +0000 (13:05 +0000)]
compiler warning fix
Daniel Stenberg [Sat, 3 Feb 2007 09:34:03 +0000 (09:34 +0000)]
- Yang Tse fixed the cookie expiry date in several test cases that started to
fail since they used "1 feb 2007"...
- Manfred Schwarb reported that socks5 support was broken and help us pinpoint
the problem. The code now tries harder to use httproxy and proxy where
apppropriate, as not all proxies are HTTP...
Daniel Stenberg [Sat, 3 Feb 2007 09:33:54 +0000 (09:33 +0000)]
- Manfred Schwarb reported that socks5 support was broken and help us pinpoint
the problem. The code now tries harder to use httproxy and proxy where
apppropriate, as not all proxies are HTTP...
Yang Tse [Fri, 2 Feb 2007 17:16:06 +0000 (17:16 +0000)]
compiler warning fix
Yang Tse [Fri, 2 Feb 2007 16:01:55 +0000 (16:01 +0000)]
add debug messages for initialization failures
Yang Tse [Fri, 2 Feb 2007 16:01:15 +0000 (16:01 +0000)]
add missing strings for existing error codes
Yang Tse [Fri, 2 Feb 2007 15:31:32 +0000 (15:31 +0000)]
move DEBUGF macro definition to setup_once.h
Daniel Stenberg [Fri, 2 Feb 2007 15:26:57 +0000 (15:26 +0000)]
prefer using the (upcoming) non-blocking libssh2 API
Daniel Stenberg [Fri, 2 Feb 2007 15:26:26 +0000 (15:26 +0000)]
don't require OpenSSL for libssh2 linking to work, in preparation for
upcoming libgcrypt-capable libssh2-versions
Yang Tse [Fri, 2 Feb 2007 11:49:15 +0000 (11:49 +0000)]
fix leftover updating cookie expiration date
Yang Tse [Fri, 2 Feb 2007 02:30:16 +0000 (02:30 +0000)]
In testsuite, update test cookies expiration from 2007-Feb-1 to 2038-Feb-1
Yang Tse [Fri, 2 Feb 2007 02:12:34 +0000 (02:12 +0000)]
reported in bug: #
1566077 the former URL mentioned in the generated cookie
jar has died and we now instead point out our own version of that
Yang Tse [Fri, 2 Feb 2007 01:36:08 +0000 (01:36 +0000)]
fix test case 62 which was failing due to cookies expiring 1 Feb 2007
Yang Tse [Fri, 2 Feb 2007 01:05:50 +0000 (01:05 +0000)]
more fixes for the testsuite cookie expiration issue
Yang Tse [Fri, 2 Feb 2007 00:10:40 +0000 (00:10 +0000)]
cookie expiration time got us with pants at our knees.
Next time in 2038 :-)
Yang Tse [Thu, 1 Feb 2007 15:36:56 +0000 (15:36 +0000)]
compiler warning fix
Gisle Vanem [Thu, 1 Feb 2007 12:23:00 +0000 (12:23 +0000)]
Suppress the "'convbuf' might be used uninitialized in this function" warning.
Yang Tse [Thu, 1 Feb 2007 11:27:42 +0000 (11:27 +0000)]
fogot to change Curl_mk_connc in header file
Yang Tse [Thu, 1 Feb 2007 01:42:13 +0000 (01:42 +0000)]
compiler warning fix
Dan Fandrich [Wed, 31 Jan 2007 23:15:47 +0000 (23:15 +0000)]
Properly use libtool macros to fix OpenLDAP library name detection on Darwin.
Yang Tse [Wed, 31 Jan 2007 19:47:49 +0000 (19:47 +0000)]
add debug messages for initialization failures
Yang Tse [Wed, 31 Jan 2007 15:34:53 +0000 (15:34 +0000)]
when using select() instead of poll, skip the test if the number of
open file descriptors is greater than FD_SETSIZE minus SAFETY_MARGIN,
also skip the test if any of the open file descriptors has a number
greater than FD_SETSIZE minus SAFETY_MARGIN.
Daniel Stenberg [Wed, 31 Jan 2007 09:37:39 +0000 (09:37 +0000)]
Marty Kuhrt's VMS updates
Yang Tse [Tue, 30 Jan 2007 13:21:39 +0000 (13:21 +0000)]
fix temp string buffer variable name
Gisle Vanem [Tue, 30 Jan 2007 13:15:07 +0000 (13:15 +0000)]
Support for OpenWatcom (Win32): It do have getpid(), but no
<sys/time.h>.
Daniel Stenberg [Tue, 30 Jan 2007 12:25:55 +0000 (12:25 +0000)]
start working on 7.16.2
Yang Tse [Tue, 30 Jan 2007 03:48:29 +0000 (03:48 +0000)]
skip test on platforms on which we use select() instead
of poll() and select() happens to be bound by FD_SETSIZE
Yang Tse [Mon, 29 Jan 2007 20:56:27 +0000 (20:56 +0000)]
fix compiler warning "discards qualifiers from pointer target type" in debug builds
Daniel Stenberg [Mon, 29 Jan 2007 20:37:02 +0000 (20:37 +0000)]
the same source file is re-used for multiple tests and I missed to add the
timval.c dependency on some of those
Gisle Vanem [Mon, 29 Jan 2007 20:24:00 +0000 (20:24 +0000)]
Some compilers lacks <sys/time.h>. Include "timeval.h" to simplify the #ifdefs.
Gisle Vanem [Mon, 29 Jan 2007 19:08:04 +0000 (19:08 +0000)]
Use DOS line-endings.
Daniel Stenberg [Mon, 29 Jan 2007 14:53:01 +0000 (14:53 +0000)]
release time
Daniel Stenberg [Mon, 29 Jan 2007 10:12:30 +0000 (10:12 +0000)]
the user-agent fix
Daniel Stenberg [Mon, 29 Jan 2007 10:09:06 +0000 (10:09 +0000)]
the libtest source codes that use curlx_tv* functions MUST use the
lib/timeval.c source code since those functions are not in the API (and might
not be accessible)
Daniel Stenberg [Mon, 29 Jan 2007 09:26:36 +0000 (09:26 +0000)]
- Michael Wallner reported that when doing a CONNECT with a custom User-Agent
header, you got _two_ User-Agent headers in the CONNECT request...! Added
test case 287 to verify the fix.
Gunter Knauf [Mon, 29 Jan 2007 00:51:02 +0000 (00:51 +0000)]
fixed segfault when compiled with MingW32 and cmd or command shell.
Daniel Stenberg [Sun, 28 Jan 2007 22:45:22 +0000 (22:45 +0000)]
Andreas Rieke added extra infof() for when a connection is not re-used due to
SSL conditions not being the same
Daniel Stenberg [Sun, 28 Jan 2007 22:36:23 +0000 (22:36 +0000)]
silence compiler warnings
Gunter Knauf [Sun, 28 Jan 2007 21:54:10 +0000 (21:54 +0000)]
enabled build with sspi.
Gunter Knauf [Sun, 28 Jan 2007 15:31:06 +0000 (15:31 +0000)]
enabled build with hardcoded ca-bundle path;
added distclean target.
Gunter Knauf [Sun, 28 Jan 2007 15:07:53 +0000 (15:07 +0000)]
force to create ca-bunde.h even if it exists already.