Yang Tse
47724ef238
Another AC_TRY_LINK conversion to AC_LINK_IFELSE.
...
Proper definition of HAVE_function if function is found deeper.
2008-08-01 19:29:05 +00:00
Yang Tse
357389a905
Another AC_TRY_LINK conversion to AC_LINK_IFELSE.
...
Sorting of function names.
Proper definition of HAVE_function if function is found deeper.
2008-08-01 19:01:35 +00:00
Dan Fandrich
42cabc14d4
Added support for --append on SFTP uploads. Unfortunately, OpenSSH doesn't
...
support this so it goes untested.
2008-08-01 18:41:14 +00:00
Yang Tse
a948ca1669
This line was for local testing, not intended to be committed.
2008-08-01 07:46:21 +00:00
Yang Tse
9cef14dfb2
Add a whitespace
2008-08-01 06:21:34 +00:00
Yang Tse
2d15d84a01
Ensure that reserved keyword AC_DEFUN is only used for its purpose.
2008-08-01 06:07:43 +00:00
Yang Tse
1035469662
Removed definition of CURL_CHECK_WORKING_RESOLVER from acinclude.m4 it has
...
not been in use since revision 1.81 of configure.in 6 years, 9 months ago.
2008-08-01 05:24:19 +00:00
Yang Tse
296a6f7749
Sync up with reality
2008-08-01 03:17:38 +00:00
Yang Tse
5cff8124b0
Sync up with reality
2008-08-01 03:10:54 +00:00
Yang Tse
90e2510e2f
Rename reentrant.m4 to avoid filename clash.
2008-08-01 02:48:00 +00:00
Dan Fandrich
9251dd7b24
User names embedded in proxy URLs without a password were parsed
...
incorrectly--the host name is treated as part of the user name and the
port number becomes the password. This can be observed in test 279
(was KNOWN_ISSUE #54 ).
2008-08-01 02:09:08 +00:00
Dan Fandrich
3615063fbc
Added more code under #ifndef CURL_DISABLE_HTTP to fix builds with
...
--disable-http
2008-08-01 01:39:24 +00:00
Dan Fandrich
09664f1ab8
Refactored create_conn by breaking it up into many smaller functions
2008-08-01 00:55:43 +00:00
Dan Fandrich
bdf1157d55
Made a parameter const
2008-08-01 00:49:29 +00:00
Dan Fandrich
b4a5ce89c2
Fixed a problem with any FTP URL or any URLs containing an IPv6 address
...
being mangled when passed to proxies when CURLOPT_PORT is also set
(reported by Pramod Sharma).
2008-07-31 22:46:29 +00:00
Dan Fandrich
660516914e
Fixed parsing of an IPv6 proxy address to support a scope identifier,
...
as well as IPv4 addresses in IPv6 format. Also, better handle the case
of a malformatted IPv6 address (avoid empty and NULL strings).
2008-07-31 20:04:00 +00:00
Yang Tse
4c1c479fcf
Second version of the patch addressing building outside of CVS tree
...
submitted to the mailing list 2008-07-31. Awaiting Ok to commit.
2008-07-31 17:58:28 +00:00
Patrick Monnerat
309651dc82
New CURLOPT_ADDRESS_SCOPE option in ILE/RPG binding
2008-07-31 13:20:23 +00:00
Dan Fandrich
b13b9f3331
Fixed keyword
2008-07-31 05:00:02 +00:00
Dan Fandrich
108e584983
Added keywords
2008-07-31 02:51:44 +00:00
Dan Fandrich
f3b4071209
Added test of IPv6 scope handling
2008-07-31 02:38:51 +00:00
Dan Fandrich
fe1d024351
Fixed a couple of problems in the IPv6 scope code. First, a host name in
...
an URL in a Location: header didn't have the scope ID removed, so an
invalid host name was used. Second, when the scope ID was removed, it
also removed any port number that may have existed in the URL.
2008-07-31 02:18:01 +00:00
Yang Tse
0de08d418f
s/silly/underquoted definition/
2008-07-31 01:41:20 +00:00
Yang Tse
109edaae6d
#149 fully done and verified. Removed from here now.
2008-07-31 01:20:25 +00:00
Dan Fandrich
d69a630989
Fixed a couple of buffer overflows in the MS-DOS port of the curl tool.
...
Factored out unslashquote. Added some 'const's in function parameters.
2008-07-31 01:12:06 +00:00
Dan Fandrich
987b67bd2e
Added IPv6 section
2008-07-30 23:49:20 +00:00
Daniel Stenberg
f4d56802f9
Committed just now and thus removed from here:
...
145 - Phil Blundell's CURLOPT_SCOPE patch/work
2008-07-30 22:09:30 +00:00
Daniel Stenberg
9dfd6eacf4
another option added, bump counter
2008-07-30 21:57:27 +00:00
Daniel Stenberg
5aed78e183
- Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL
...
parser to allow numerical IPv6-addresses to be specified with the scope
given, as per RFC4007 - with a percent letter that itself needs to be URL
escaped. For example, for an address of fe80::1234%1 the HTTP URL is:
"http://[fe80::1234%251]/ "
2008-07-30 21:55:26 +00:00
Daniel Stenberg
011e5dd864
Fixed:
...
147 - PHP's bug report #43158 (http://bugs.php.net/bug.php?id=43158 ) identifies
a true bug in libcurl built with OpenSSL.
2008-07-30 21:42:26 +00:00
Daniel Stenberg
ae654266df
- PHP's bug report #43158 ( http://bugs.php.net/bug.php?id=43158 ) identifies a
...
true bug in libcurl built with OpenSSL. It made curl_easy_getinfo() more or
less always return 0 for CURLINFO_SSL_VERIFYRESULT because the function that
would set it to something non-zero would return before the assign in almost
all error cases. The internal variable is now set to non-zero from the start
of the function only to get cleared later on if things work out fine.
2008-07-30 21:24:59 +00:00
Daniel Stenberg
03986f1b8b
- Made the curl tool's -w option support the %{ssl_verify_result} variable
2008-07-30 21:24:19 +00:00
Dan Fandrich
bc649593e4
Added test cases 1052 through 1055 to test uploading data from files
...
during redirects. Test cases 1052 and 1055 show problems (maybe the same
root cause as 1051) and are disabled.
2008-07-30 21:04:44 +00:00
Dan Fandrich
cc0285da7f
Factored out Curl_copy_header_value
2008-07-30 20:11:51 +00:00
Yang Tse
f3bc16f4f5
Add file version serial number that might be used by 'aclocal' and others.
...
Keep the '#' character as the first one on the line.
2008-07-30 12:09:35 +00:00
Yang Tse
15f94858f2
Update copyright year.
2008-07-30 08:27:02 +00:00
Yang Tse
5febd06c25
Sync comment with reality.
2008-07-30 08:21:25 +00:00
Dan Fandrich
9eb7fe8ac0
Added the problems with test cases 1041 and 1051
2008-07-30 07:31:10 +00:00
Dan Fandrich
1f26ea4a85
Added test case 1051 to test Location: following with PUT, as reported
...
by Ben Sutcliffe. The test when run manually shows a problem in curl,
but the test harness web server doesn't run the test correctly so it's
disabled for now.
2008-07-30 07:24:59 +00:00
Yang Tse
912c29fd8c
Undo using the sreadfrom() wrapper to replace recvfrom() in our code, for real ;-)
2008-07-30 06:20:43 +00:00
Yang Tse
eea468918e
#149 done. Awaiting autobuild verification before removing.
2008-07-30 05:15:51 +00:00
Yang Tse
537490e391
Undo using the sreadfrom() wrapper to replace recvfrom() in our code.
2008-07-30 05:10:42 +00:00
Yang Tse
de8e362d4a
#148 no longer blocks #144
2008-07-30 04:46:24 +00:00
Yang Tse
7a588144b7
Reinstate hiding aclocal 'underquoted definition' warnings.
2008-07-30 04:42:16 +00:00
Yang Tse
7f2999aa43
updated #148
2008-07-30 03:24:38 +00:00
Yang Tse
a3498f96ef
Reinstate the 'aclocal -I m4' in buildconf and 'ACLOCAL_AMFLAGS = -I m4' way of
...
including our local m4/reentrant.m4 file. This even takes care of including the
file in the distribution tarball.
2008-07-30 03:10:03 +00:00
Yang Tse
637bfa0252
Show autom4te and aclocal versions.
...
Set SED for Solaris to gsed if available.
2008-07-30 01:17:15 +00:00
Dan Fandrich
1c8f689ecb
Minor Symbian updates.
2008-07-30 00:10:32 +00:00
Dan Fandrich
7a8b11d716
Fixed --use-ascii to properly convert text files on Symbian OS, MS-DOS
...
and OS/2.
2008-07-30 00:09:02 +00:00
Yang Tse
a67e207866
Updtae #148 with link to start of thread
2008-07-29 23:56:01 +00:00