Gisle Vanem
8925527fef
In MSVC9 'time_t' is a 64-bit quantity. This causes a truncation warning
...
when an 'int' is assigned to a 'time_t' variable. Hence redefine 'retry_time'
and 'retry_max' to 'time_t'.
2009-02-14 13:43:18 +00:00
Daniel Stenberg
8cdc220bc0
nah, use the simpler year - year range syntax only, no matter what emacs'
...
copyright-update script thinks
2009-02-14 09:12:55 +00:00
Daniel Stenberg
d315d41a12
- Andre Guibert de Bruet found and fixed a memory leak in the content encoding
...
code, which could happen on libz errors.
2009-02-14 09:09:09 +00:00
Daniel Stenberg
4f7687895d
there is nothing left planned for next release, metalink experiments are post-
...
poned
2009-02-13 14:34:07 +00:00
Daniel Stenberg
07d46886df
Anthony Bryan's letter=>symbol fixes
2009-02-13 09:12:52 +00:00
Yang Tse
b79c8f527f
ignore
2009-02-13 06:34:44 +00:00
Yang Tse
0cf10ae4d7
Remove following files generated on previous buildconf run:
...
ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4
2009-02-13 06:25:35 +00:00
Yang Tse
debe0b561d
check for poll() as it is done for other functions
2009-02-13 05:49:58 +00:00
Dan Fandrich
9ddc7ad038
Fixed NTLM on curl-config --features with GnuTLS
2009-02-12 23:57:17 +00:00
Dan Fandrich
9a4c887c4a
Added support for Digest and NTLM authentication using GnuTLS.
2009-02-12 20:48:40 +00:00
Daniel Stenberg
de41c6ef43
credit Jocelyn Jaubert for his bug report and associated work
2009-02-12 08:05:23 +00:00
Daniel Stenberg
002cf105c6
- CURLINFO_CONDITION_UNMET was added to allow an application to get to know if
...
the condition in the previous request was unmet. This is typically a time
condition set with CURLOPT_TIMECONDITION and was previously not possible to
reliably figure out. From bug report #2565128
(http://curl.haxx.se/bug/view.cgi?id=2565128 )
2009-02-11 21:47:14 +00:00
Daniel Stenberg
fb8fdf9273
Added docs/libcurl/symbols-in-versions
2009-02-10 13:06:25 +00:00
Daniel Stenberg
517b8ed057
completed the CURLPROXY_ collection
2009-02-10 12:52:09 +00:00
Daniel Stenberg
d3d7ed1766
include the symbols-in-versions file in the release archive
2009-02-10 12:39:26 +00:00
Daniel Stenberg
77fd094090
remove a trailing name from a comment
2009-02-10 12:34:41 +00:00
Daniel Stenberg
c65f9acdc7
introducing the symbols-in-versions file, in an effort to help app authors
...
to better know and track symbols in earlier libcurl versions
2009-02-10 12:33:10 +00:00
Daniel Stenberg
5c4cdcb2d5
mention when CURLOPT_ADDRESS_SCOPE was added
2009-02-10 12:32:12 +00:00
Daniel Stenberg
b1233c7e4d
#45 . libcurl built to support ipv6 uses getaddrinfo() to resolve host names.
...
getaddrinfo() sorts the response list
This isn't a libcurl bug since this is how getaddrinfo() is *supposed* to work!
Apparently you deal with this using the /etc/gai.conf file.
2009-02-09 16:09:45 +00:00
Daniel Stenberg
4ebe4b907b
#53 . SFTP busy-loop problem. should be fixed in 7.19.3 with libssh2 1.0 (or
...
later)
2009-02-09 16:08:08 +00:00
Daniel Stenberg
bf44d0f640
Moved Curl_strntoupper() to the rawstr.c file where the other raw string
...
functions are.
2009-02-07 22:53:37 +00:00
Daniel Stenberg
73cf99c052
214 - progress bar prefix, second try (for the curl tool)
...
patch declined
2009-02-07 22:47:07 +00:00
Dan Fandrich
44c02227e9
Mention the first release of CURLOPT_FTP_FILEMETHOD
2009-02-06 19:25:32 +00:00
Dan Fandrich
77da9a0087
Added an explicit buffer limit check in msdosify() (patch based on FreeBSD).
...
This couldn't ever overflow in curl, but might if the code were used
elsewhere or under different conditions.
2009-02-05 00:13:40 +00:00
Dan Fandrich
42d2353e74
Fixed a typo (spotted in the FreeBSD ports).
2009-02-04 23:40:57 +00:00
Dan Fandrich
4b441ebac5
Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGS
...
(respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
2009-02-04 23:33:34 +00:00
Daniel Stenberg
01140217f5
206 - A. Craig West's CURLOPT_HTTP_VERSION change for CONNECT
...
applied!
2009-02-04 21:22:13 +00:00
Daniel Stenberg
71f3877f3a
- Hidemoto Nakada provided a small fix that makes it possible to get the
...
CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with
CURLOPT_NOBODY set true.
2009-02-03 22:28:41 +00:00
Phil Blundell
83d135f990
* February 3 2009 (Phil Blundell)
...
- If the server returns garbage or nothing at all in response to an AAAA query,
go on and ask for A records anyway.
2009-02-03 14:38:09 +00:00
Daniel Stenberg
d4ac3d53fc
- Patrick Scott found a rather large memory leak when using the multi
...
interface and setting CURLMOPT_MAXCONNECTS to something less than the number
of handles you add to the multi handle. All the connections that didn't fit
in the cache would not be properly disconnected nor freed!
2009-02-02 21:36:47 +00:00
Daniel Stenberg
f0332c0b58
minor comment fix
2009-02-02 21:20:59 +00:00
Daniel Stenberg
bdd4294e79
- Craig A West brought us: libcurl now defaults to do CONNECT with HTTP
...
version 1.1 instead of 1.0 like before. This change also introduces the new
proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to
switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0
option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0.
I updated all test cases cases that use CONNECT and I tried to do some using
--proxy1.0 and some updated to do CONNECT 1.1 to get both versions run.
2009-02-02 16:19:23 +00:00
Daniel Stenberg
dcf92bffd2
- When building with c-ares 1.6.1 (not yet released) or later and IPv6 support
...
enabled, we can now take advantage of its brand new AF_UNSPEC support in
ares_gethostbyname(). This makes test case 241 finally run fine for me wtih
this setup since it now parses the "::1 ip6-localhost" line fine in my
/etc/hosts file!
2009-01-31 20:25:55 +00:00
Daniel Stenberg
a2256e899b
- ares_gethostbyname() now accepts 'AF_UNSPEC' as a family for resolving
...
either AF_INET6 or AF_INET. It works by accepting any of the looksups in the
hosts file, and it resolves the AAAA field with a fallback to A.
2009-01-31 20:17:41 +00:00
Daniel Stenberg
8b6805572a
- Scott Cantor filed bug report #2550061
...
(http://curl.haxx.se/bug/view.cgi?id=2550061 ) mentioning that I failed to
properly make sure that the VC9 makefiles got included in the latest
release. I've now fixed the release script and verified it so next release
will hopefully include them properly!
2009-01-31 18:38:41 +00:00
Daniel Stenberg
607253c2d0
Truly make sure that the vc8 and vc9 makefiles that are generated get included
...
in the release archive - by using our .dist suffix trick.
2009-01-30 22:32:13 +00:00
Dan Fandrich
09f4a1c5e5
Fixed --disable-proxy for FTP and SOCKS. Thanks to Daniel Egger for reporting
...
the problem.
2009-01-30 19:29:25 +00:00
Dan Fandrich
5c9fff9c6e
Mentioned some other characters that may need escaping on the curl command
...
line and fixed a few typos.
2009-01-30 18:28:29 +00:00
Yang Tse
99b4912688
ensure that we use the ANSI version functions
2009-01-30 02:35:40 +00:00
Yang Tse
0a6312d66f
fix typo in comment
2009-01-30 01:54:22 +00:00
Yang Tse
a97f52db20
Provide another definition missing in MinGW's headers
2009-01-30 01:37:37 +00:00
Yang Tse
5267be57f7
Provide some definitions missing in MinGW's headers
2009-01-29 21:44:36 +00:00
Yang Tse
e813bf31d7
Introduced curl_sspi.c and curl_sspi.h for the implementation of functions
...
Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were
named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c
Also adjusted socks_sspi.c to remove the link-time dependency on the Windows
SSPI library using it now in the same way as it was done in http_ntlm.c.
2009-01-29 20:32:27 +00:00
Yang Tse
1bd0be0361
added some more messages to SSPI error function
2009-01-29 15:25:23 +00:00
Yang Tse
996c8ca7c2
Avoid inclusion of ntsecapi.h and directly provide the KERB_WRAP_NO_ENCRYPT
...
definition to avoid a 'STRING' duplicate definition from OpenSSL's safestack.h
2009-01-29 14:00:18 +00:00
Yang Tse
fec65fbff6
fix compiler warnings
2009-01-29 03:39:10 +00:00
Daniel Stenberg
de4610a55f
- Markus Moeller introduced two new options to libcurl:
...
CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl
to do GSS-style authentication with SOCKS5 proxies. The curl tool got the
options called --socks5-gssapi-service and --socks5-gssapi-nec to enable
these.
2009-01-28 21:33:58 +00:00
Yang Tse
6e34c2d59a
fix compiler warning: conversion from 'int' to 'bool', possible loss of data
2009-01-28 17:43:11 +00:00
Yang Tse
34b09398d5
fix compiler warning: enumerated type mixed with another type
2009-01-28 17:26:26 +00:00
Daniel Stenberg
0516ce7786
- Chad Monroe provided the new CURLOPT_TFTP_BLKSIZE option that allows an app
...
to set desired block size to use for TFTP transfers instead of the default
512 bytes.
2009-01-26 22:43:06 +00:00