platform/upstream/curl.git
16 years agoRemved '-dDEBUG_THREADING_GETADDRINFO' (no longer used).
Gisle Vanem [Wed, 13 Aug 2008 08:19:51 +0000 (08:19 +0000)]
Remved '-dDEBUG_THREADING_GETADDRINFO' (no longer used).

16 years agoUpdate dependencies.
Gisle Vanem [Wed, 13 Aug 2008 08:17:50 +0000 (08:17 +0000)]
Update dependencies.

16 years agoUpdate dependencies.
Gisle Vanem [Wed, 13 Aug 2008 07:30:21 +0000 (07:30 +0000)]
Update dependencies.

16 years agoMingW uses gcc. Hence the suffixes for 64-bit are 'LL' and 'ULL'.
Gisle Vanem [Wed, 13 Aug 2008 07:16:20 +0000 (07:16 +0000)]
MingW uses gcc. Hence the suffixes for 64-bit are 'LL' and 'ULL'.

16 years agoAdjustment due to curl_off_t no longer following off_t
Yang Tse [Wed, 13 Aug 2008 03:05:00 +0000 (03:05 +0000)]
Adjustment due to curl_off_t no longer following off_t

16 years agoAdded a few user-visible bug fixes
Dan Fandrich [Wed, 13 Aug 2008 00:43:46 +0000 (00:43 +0000)]
Added a few user-visible bug fixes

16 years agosync src makefile with lib makefile.
Gunter Knauf [Tue, 12 Aug 2008 21:25:11 +0000 (21:25 +0000)]
sync src makefile with lib makefile.

16 years agoRemoved unneeded header files
Dan Fandrich [Tue, 12 Aug 2008 20:21:40 +0000 (20:21 +0000)]
Removed unneeded header files

16 years agoFixed a buffer overflow problem in Curl_proxyCONNECT that could occur
Dan Fandrich [Tue, 12 Aug 2008 20:07:52 +0000 (20:07 +0000)]
Fixed a buffer overflow problem in Curl_proxyCONNECT that could occur
when a server responded with long headers and data.  Luckily, the buffer
overflowed into another unused buffer, so no actual harm was done.
Added test cases 1060 and 1061 to verify.

16 years agoFix 'result' may be used uninitialized in function readwrite_data()
Yang Tse [Tue, 12 Aug 2008 19:09:20 +0000 (19:09 +0000)]
Fix 'result' may be used uninitialized in function readwrite_data()

16 years agoFix curl_off_t sized constants usage
Yang Tse [Tue, 12 Aug 2008 18:49:33 +0000 (18:49 +0000)]
Fix curl_off_t sized constants usage

16 years agoHandle short reads
Dan Fandrich [Tue, 12 Aug 2008 18:32:55 +0000 (18:32 +0000)]
Handle short reads

16 years agoDOS/Windows 'shells' eat echoed percent sign characters unless escaped.
Yang Tse [Tue, 12 Aug 2008 10:08:14 +0000 (10:08 +0000)]
DOS/Windows 'shells' eat echoed percent sign characters unless escaped.

16 years ago- Andy Tsouladze fixed runtests.pl to not attempt to execute the stunnel
Daniel Stenberg [Tue, 12 Aug 2008 07:21:39 +0000 (07:21 +0000)]
- Andy Tsouladze fixed runtests.pl to not attempt to execute the stunnel
  _directory_ if that happened to appear in the path!

16 years agoFix CURL_CHECK_DEF_INTXX_C suffix definition detection
Yang Tse [Tue, 12 Aug 2008 07:20:44 +0000 (07:20 +0000)]
Fix CURL_CHECK_DEF_INTXX_C suffix definition detection

16 years agoAdded macros for minimum-width signed and unsigned curl_off_t integer
Yang Tse [Tue, 12 Aug 2008 03:00:24 +0000 (03:00 +0000)]
Added macros for minimum-width signed and unsigned curl_off_t integer
constants CURL_OFF_T_C and CURL_OFF_TU_C. The clever double helper macro
used internally to provide its functionality is thanks to Lars Nilsson.

16 years agoAdded HTTP CONNECT keywords
Dan Fandrich [Mon, 11 Aug 2008 23:16:48 +0000 (23:16 +0000)]
Added HTTP CONNECT keywords

16 years agoFixed a boundary condition error in ftp_readresp() whereby a non-terminal
Dan Fandrich [Mon, 11 Aug 2008 23:16:08 +0000 (23:16 +0000)]
Fixed a boundary condition error in ftp_readresp() whereby a non-terminal
line of a multiline FTP response whose last byte landed exactly at the end
of the BUFSIZE-length buffer would be treated as the terminal response
line.  The following response code read in would then actually be the
end of the previous response line, and all responses from then on would
correspond to the wrong command. Test case 1062 verifies this.

Stop closing a never-opened ftp socket.

16 years ago152 + 153 are fixed!
Daniel Stenberg [Mon, 11 Aug 2008 20:30:37 +0000 (20:30 +0000)]
152 + 153 are fixed!

16 years ago- Constantine Sapuntzakis filed bug report #2042430
Daniel Stenberg [Mon, 11 Aug 2008 20:29:36 +0000 (20:29 +0000)]
- Constantine Sapuntzakis filed bug report #2042430
  (http://curl.haxx.se/bug/view.cgi?id=2042430) with a patch. "NTLM Windows
  SSPI code is not thread safe". This was due to libcurl using static
  variables to tell wether to load the necessary SSPI DLL, but now the loading
  has been moved to the more suitable curl_global_init() call.

16 years ago- Constantine Sapuntzakis filed bug report #2042440
Daniel Stenberg [Mon, 11 Aug 2008 19:26:01 +0000 (19:26 +0000)]
- Constantine Sapuntzakis filed bug report #2042440
  (http://curl.haxx.se/bug/view.cgi?id=2042440) with a patch. He identified a
  problem when using NTLM over a proxy but the end-point does Basic, and then
  libcurl would do wrong when the host sent "Connection: close" as the proxy's
  NTLM state was erroneously cleared.

16 years agoOoops
Yang Tse [Mon, 11 Aug 2008 19:00:26 +0000 (19:00 +0000)]
Ooops

16 years agoAdded missing signed and unsigned curl_off_t integer constant suffixes for
Yang Tse [Mon, 11 Aug 2008 18:27:21 +0000 (18:27 +0000)]
Added missing signed and unsigned curl_off_t integer constant suffixes for
internal and external use. CURL_SUFFIX_CURL_OFF_T, CURL_SUFFIX_CURL_OFF_TU.

16 years agoadded two known topics for 7.19.1
Daniel Stenberg [Mon, 11 Aug 2008 12:41:13 +0000 (12:41 +0000)]
added two known topics for 7.19.1

16 years agofive more bugs I'd like to get fixed or at least considered before 7.19.0
Daniel Stenberg [Mon, 11 Aug 2008 10:55:47 +0000 (10:55 +0000)]
five more bugs I'd like to get fixed or at least considered before 7.19.0

16 years agoOld logic based on CURL_SIZEOF_CURL_OFF_T, ENABLE_64BIT, HAVE_LONGLONG,
Yang Tse [Mon, 11 Aug 2008 03:26:23 +0000 (03:26 +0000)]
Old logic based on CURL_SIZEOF_CURL_OFF_T, ENABLE_64BIT, HAVE_LONGLONG,
has to be revisited and adjusted as appropriate.

Enabling and disabling of large file support needs further inspection.

16 years agoFix NetWare missing curl_off_t typedef!!
Yang Tse [Mon, 11 Aug 2008 02:40:19 +0000 (02:40 +0000)]
Fix NetWare missing curl_off_t typedef!!

16 years ago s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g
Yang Tse [Mon, 11 Aug 2008 01:22:57 +0000 (01:22 +0000)]
 s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/g

16 years agoDie when curlbuild.h is not created or available
Yang Tse [Mon, 11 Aug 2008 00:15:20 +0000 (00:15 +0000)]
Die when curlbuild.h is not created or available

16 years agofixed creation of curlbuild.h.
Gunter Knauf [Sun, 10 Aug 2008 22:28:51 +0000 (22:28 +0000)]
fixed creation of curlbuild.h.

16 years agoFix NetWare curlbuild.h
Yang Tse [Sun, 10 Aug 2008 18:33:41 +0000 (18:33 +0000)]
Fix NetWare curlbuild.h

NetWare curlbuild.h settings depend on whether LIBC or CLIB is used.

The NetWare specific Makefile is capable of knowing which target is being built.
So, finally, the NetWare Makefile will take care of generating curlbuild.h

16 years agoFix: Remove now this SIZEOF_CURL_OFF_T symbol definition.
Yang Tse [Sun, 10 Aug 2008 00:39:45 +0000 (00:39 +0000)]
Fix: Remove now this SIZEOF_CURL_OFF_T symbol definition.

This should have been done with the initial 64-bit curl_off_t patch.

16 years agoWhen running testcurl.pl display definitions from curlbuild.h
Yang Tse [Sat, 9 Aug 2008 23:14:40 +0000 (23:14 +0000)]
When running testcurl.pl display definitions from curlbuild.h

16 years agoRemove debug tracing for DO_CURL_OFF_T_CHECK and CURL_CHECK_DEF
Yang Tse [Sat, 9 Aug 2008 21:10:31 +0000 (21:10 +0000)]
Remove debug tracing for DO_CURL_OFF_T_CHECK and CURL_CHECK_DEF

16 years agoUse int64_t in favour of __int64 for curl_off_t when both are available.
Yang Tse [Sat, 9 Aug 2008 17:46:25 +0000 (17:46 +0000)]
Use int64_t in favour of __int64 for curl_off_t when both are available.

16 years agoImprove CURL_CHECK_DEF
Yang Tse [Sat, 9 Aug 2008 17:26:24 +0000 (17:26 +0000)]
Improve CURL_CHECK_DEF

16 years agoFix IBM C and DEC/Compaq C compiler detection
Yang Tse [Sat, 9 Aug 2008 17:01:17 +0000 (17:01 +0000)]
Fix IBM C and DEC/Compaq C compiler detection

16 years agoRemove some redundancy
Yang Tse [Sat, 9 Aug 2008 15:28:13 +0000 (15:28 +0000)]
Remove some redundancy

16 years agoRefactored Curl_readwrite() into a number of smaller functions.
Dan Fandrich [Fri, 8 Aug 2008 20:37:54 +0000 (20:37 +0000)]
Refactored Curl_readwrite() into a number of smaller functions.

16 years agoAdd debug tracing for DO_CURL_OFF_T_CHECK
Yang Tse [Fri, 8 Aug 2008 17:42:58 +0000 (17:42 +0000)]
Add debug tracing for DO_CURL_OFF_T_CHECK

16 years agoRemove some redundancy
Yang Tse [Fri, 8 Aug 2008 16:53:02 +0000 (16:53 +0000)]
Remove some redundancy

16 years agoRemove potential overquoting
Yang Tse [Fri, 8 Aug 2008 16:25:07 +0000 (16:25 +0000)]
Remove potential overquoting

16 years agoRemove rule no longer needed since tests/testcurl.pl revision 1.63
Yang Tse [Fri, 8 Aug 2008 15:16:59 +0000 (15:16 +0000)]
Remove rule no longer needed since tests/testcurl.pl revision 1.63

See CVS commit comment on tests/testcurl.pl revision 1.63

16 years agoReintroduce the adjustment previously done in testcurl.pl so that it copies the
Yang Tse [Fri, 8 Aug 2008 12:34:01 +0000 (12:34 +0000)]
Reintroduce the adjustment previously done in testcurl.pl so that it copies the
CVS checked out curlbuild.h.dist as curlbuild.h for any non-configure target
when host system is not running buildconf.bat.

All the curlbuild.h stuff was done taking in consideration that no adjustment
would be needed in non-configure makefiles.

As it is documented, when trying to build on non-configure capable systems or on
systems which for any reason don't run the true configure script, it is required
to have the proper curlbuild.h in place before calling any makefile.

Due to the hardcore memory debugging stuff c-ares enabled debug builds also need
the file in the proper place before attempting to build c-ares.

16 years agoAdd debug tracing for CURL_CHECK_DEF
Yang Tse [Fri, 8 Aug 2008 11:34:08 +0000 (11:34 +0000)]
Add debug tracing for CURL_CHECK_DEF

16 years agoMade ftp a required feature
Dan Fandrich [Fri, 8 Aug 2008 07:51:50 +0000 (07:51 +0000)]
Made ftp a required feature

16 years agoAdded test1059 to test the FTP proxy tunnel problem fixed July 11.
Dan Fandrich [Fri, 8 Aug 2008 07:26:30 +0000 (07:26 +0000)]
Added test1059 to test the FTP proxy tunnel problem fixed July 11.

16 years agoPeek at predefined symbols done. and now removed.
Yang Tse [Fri, 8 Aug 2008 05:58:08 +0000 (05:58 +0000)]
Peek at predefined symbols done. and now removed.

Netware's autobuilds gcc can not been told apart from a standard built gcc.

16 years agoAdd metroworks and generic gcc
Yang Tse [Fri, 8 Aug 2008 05:53:01 +0000 (05:53 +0000)]
Add metroworks and generic gcc

16 years agoTake a peek at netware's gcc predefined symbols.
Yang Tse [Fri, 8 Aug 2008 03:09:16 +0000 (03:09 +0000)]
Take a peek at netware's gcc predefined symbols.

16 years agoFixed an uninitialized variable in multi_runsingle() that could cause a
Dan Fandrich [Fri, 8 Aug 2008 01:52:08 +0000 (01:52 +0000)]
Fixed an uninitialized variable in multi_runsingle() that could cause a
request to prematurely end.

16 years agoRemove last adjustment done to testcurl.pl to verify if change introduced by
Yang Tse [Thu, 7 Aug 2008 22:40:06 +0000 (22:40 +0000)]
Remove last adjustment done to testcurl.pl to verify if change introduced by
Guenter Knauf in lib/Makefile.netware is enough to get the netware autobuilds
going again.

16 years agouse CP macro rather than cp command.
Gunter Knauf [Thu, 7 Aug 2008 21:43:30 +0000 (21:43 +0000)]
use CP macro rather than cp command.

16 years agoadded rule to create include/curl/curlbuild.h from include/curl/curlbuild.h.dist.
Gunter Knauf [Thu, 7 Aug 2008 21:34:35 +0000 (21:34 +0000)]
added rule to create include/curl/curlbuild.h from include/curl/curlbuild.h.dist.

16 years agoAdjust testcurl.pl to copy checked out curlbuild.h.dist as curlbuild.h
Yang Tse [Thu, 7 Aug 2008 20:41:12 +0000 (20:41 +0000)]
Adjust testcurl.pl to copy checked out curlbuild.h.dist as curlbuild.h
for non-configure targets when host system doesn't run buildconf.bat.

16 years agoSkip data type check in DO_CURL_OFF_T_CHECK macro when argument is empty.
Yang Tse [Thu, 7 Aug 2008 19:03:46 +0000 (19:03 +0000)]
Skip data type check in DO_CURL_OFF_T_CHECK macro when argument is empty.

16 years agoPrevent buildconf from removing 'Makefile' and 'missing' files. This would blow
Yang Tse [Thu, 7 Aug 2008 16:22:25 +0000 (16:22 +0000)]
Prevent buildconf from removing 'Makefile' and 'missing' files. This would blow
away our CVS checked 'missing' file and also CVS checked 'hiper/Makefile'.

16 years agoFix CURL_CHECK_DEF so that when the expansion of the preprocessor symbol results
Yang Tse [Thu, 7 Aug 2008 16:07:26 +0000 (16:07 +0000)]
Fix CURL_CHECK_DEF so that when the expansion of the preprocessor symbol results
in a set of double-quoted strings, this macro will now return an expansion which
consists of a single double-quoted string result of concatenating all of them.

16 years agosync with reality
Yang Tse [Thu, 7 Aug 2008 02:46:23 +0000 (02:46 +0000)]
sync with reality

16 years agoInitial support of curlbuild.h and curlrules.h which allows
Yang Tse [Thu, 7 Aug 2008 00:29:08 +0000 (00:29 +0000)]
Initial support of curlbuild.h and curlrules.h which allows
to have a curl_off_t data type no longer gated to off_t.

16 years ago- mention curl_multi_socket_action() rather than the deprecated
Daniel Stenberg [Wed, 6 Aug 2008 21:22:07 +0000 (21:22 +0000)]
- mention curl_multi_socket_action() rather than the deprecated
  curl_multi_socket()
- don't claim that it has an argument named 'easy' because it doesn't!

16 years agoremove debug code I accidentally left in here
Daniel Stenberg [Wed, 6 Aug 2008 09:54:34 +0000 (09:54 +0000)]
remove debug code I accidentally left in here

16 years agoRemoved TRACE() code.
Gisle Vanem [Wed, 6 Aug 2008 08:05:09 +0000 (08:05 +0000)]
Removed TRACE() code.

16 years agoThe minimum autoconf version required for this file is 2.50
Yang Tse [Tue, 5 Aug 2008 09:08:43 +0000 (09:08 +0000)]
The minimum autoconf version required for this file is 2.50

Avoid dot notation in aclocal serial file number, use a single number now.

16 years ago#148 Removed.
Yang Tse [Tue, 5 Aug 2008 06:44:21 +0000 (06:44 +0000)]
#148 Removed.

Rebooting the problematic system, releasing allocated memory and swap,
has allowed buildconf and configure to complete sucessfully since then.

16 years agoValidate that autom4te and autoconf versions match.
Yang Tse [Tue, 5 Aug 2008 06:20:18 +0000 (06:20 +0000)]
Validate that autom4te and autoconf versions match.

Validate that aclocal and automake versions match.

Improve removal of previous run generated files.

Remove verbose debug logging of aclocal on Solaris.

16 years ago- Yehoshua Hershberg found a problem that would make libcurl re-use a
Daniel Stenberg [Mon, 4 Aug 2008 22:07:50 +0000 (22:07 +0000)]
- Yehoshua Hershberg found a problem that would make libcurl re-use a
  connection with the multi interface even if a previous use of it caused a
  CURLE_PEER_FAILED_VERIFICATION to get returned. I now make sure that failed
  SSL connections properly close the connections.

16 years ago- Test cases 1051, 1052 and 1055 were added by Daniel Fandrich on July 30 and
Daniel Stenberg [Mon, 4 Aug 2008 22:00:22 +0000 (22:00 +0000)]
- Test cases 1051, 1052 and 1055 were added by Daniel Fandrich on July 30 and
  proved how PUT and POST with a redirect could lead to a "hang" due to the
  data stream not being rewound properly when it had to in order to get sent
  properly (again) to the subsequent URL. This is now fixed and these test
  cases are no longer disabled.

16 years ago- Fix by Tofu Linden:
Daniel Stenberg [Mon, 4 Aug 2008 20:23:12 +0000 (20:23 +0000)]
- Fix by Tofu Linden:

  The symptom:
  * Users (usually, but not always) on 2-Wire routers and the Comcast service
  and a wired connection to their router would find that the second and
  subsequent DNS lookups from fresh processes using c-ares to resolve the same
  address would cause the process to never see a reply (it keeps polling for
  around 1m15s before giving up).

  The repro:
  * On such a machine (and yeah, it took us a lot of QA to find the systems
  that reproduce such a specific problem!), do 'ahost www.secondlife.com',
  then do it again.  The first process's lookup will work, subsequent lookups
  will time-out and fail.

  The cause:
  * init_id_key() was calling randomize_key() *before* it initialized
  key->state, meaning that the randomness generated by randomize_key() is
  immediately overwritten with deterministic values. (/dev/urandom was also
  being read incorrectly in the c-ares version we were using, but this was
  fixed in a later version.)
  * This makes the stream of generated query-IDs from any new c-ares process
  be an identical and predictable sequence of IDs.
  * This makes the 2-Wire's default built-in DNS server detect these queries
  as probable-duplicates and (erroneously) not respond at all.

16 years agoUpdate #144
Yang Tse [Mon, 4 Aug 2008 10:13:02 +0000 (10:13 +0000)]
Update #144

Third version of the patch fixing a failure to chose a proper data
type submitted to the mailing list 2008-08-04.

16 years agoAutoconf 2.62 has changed the behaviour of the AC_AIX macro which we use.
Yang Tse [Mon, 4 Aug 2008 06:48:11 +0000 (06:48 +0000)]
Autoconf 2.62 has changed the behaviour of the AC_AIX macro which we use.
Prior versions of autoconf defined _ALL_SOURCE if _AIX was defined. But,
autoconf 2.62 version of AC_AIX defines _ALL_SOURCE along with other four
preprocessor symbols no matter if the system is AIX or not. To keep the
traditional behaviour, as well as an uniform one, across autoconf versions
AC_AIX is replaced with our own internal macro.

16 years ago- Test case 1041 (added by Daniel Fandrich April 14th) proved a bug where PUT
Daniel Stenberg [Sun, 3 Aug 2008 22:20:58 +0000 (22:20 +0000)]
- Test case 1041 (added by Daniel Fandrich April 14th) proved a bug where PUT
  with -C - sent garbage in the Content-Range: header. I fixed this problem by
  making sure libcurl always sets the size of the _entire_ upload if an app
  attemps to do resumed uploads since libcurl simply cannot know the size of
  what is currently at the server end. Test 1041 is no longer disabled.

16 years agorefer to the new option by its real name
Daniel Stenberg [Sun, 3 Aug 2008 21:50:56 +0000 (21:50 +0000)]
refer to the new option by its real name

16 years agoUpdate #148
Yang Tse [Sun, 3 Aug 2008 16:46:20 +0000 (16:46 +0000)]
Update #148

Rebooting the Solaris system, releasing allocated memory and swap,
has allowed buildconf and configure to complete sucessfully. Further
tests on the system might allow determination of the problem origin.
Solaris AutoBuilds suceeded on August 2 and 3.

16 years agoImproved title
Dan Fandrich [Sun, 3 Aug 2008 05:13:05 +0000 (05:13 +0000)]
Improved title

16 years agoAdjust DEC/Compaq C compiler settings.
Yang Tse [Sun, 3 Aug 2008 03:14:05 +0000 (03:14 +0000)]
Adjust DEC/Compaq C compiler settings.

16 years agoAnother AC_TRY_COMPILE conversion to AC_COMPILE_IFELSE
Yang Tse [Sun, 3 Aug 2008 01:01:05 +0000 (01:01 +0000)]
Another AC_TRY_COMPILE conversion to AC_COMPILE_IFELSE

16 years agoNo longer test availability of the gdi32 library, nor use it for linking, even
Yang Tse [Sat, 2 Aug 2008 01:44:13 +0000 (01:44 +0000)]
No longer test availability of the gdi32 library, nor use it for linking, even
when we have been doing this since revision 1.47 of configure.ac 4 years and
5 months ago when cross-compiling a Windows target. We actually don't use any
function from the Windows GDI (Graphics Device Interface) related with drawing
or graphics-related operations.

16 years agoAdded tests 1057 and 1058 to test FTP and HTTPS transfers with ranges
Dan Fandrich [Fri, 1 Aug 2008 22:12:34 +0000 (22:12 +0000)]
Added tests 1057 and 1058 to test FTP and HTTPS transfers with ranges
relative to end of file.

16 years agoAnother AC_TRY_LINK conversion to AC_LINK_IFELSE.
Yang Tse [Fri, 1 Aug 2008 19:29:05 +0000 (19:29 +0000)]
Another AC_TRY_LINK conversion to AC_LINK_IFELSE.
Proper definition of HAVE_function if function is found deeper.

16 years agoAnother AC_TRY_LINK conversion to AC_LINK_IFELSE.
Yang Tse [Fri, 1 Aug 2008 19:01:35 +0000 (19:01 +0000)]
Another AC_TRY_LINK conversion to AC_LINK_IFELSE.
Sorting of function names.
Proper definition of HAVE_function if function is found deeper.

16 years agoAdded support for --append on SFTP uploads. Unfortunately, OpenSSH doesn't
Dan Fandrich [Fri, 1 Aug 2008 18:41:14 +0000 (18:41 +0000)]
Added support for --append on SFTP uploads. Unfortunately, OpenSSH doesn't
support this so it goes untested.

16 years agoThis line was for local testing, not intended to be committed.
Yang Tse [Fri, 1 Aug 2008 07:46:21 +0000 (07:46 +0000)]
This line was for local testing, not intended to be committed.

16 years agoAdd a whitespace
Yang Tse [Fri, 1 Aug 2008 06:21:34 +0000 (06:21 +0000)]
Add a whitespace

16 years agoEnsure that reserved keyword AC_DEFUN is only used for its purpose.
Yang Tse [Fri, 1 Aug 2008 06:07:43 +0000 (06:07 +0000)]
Ensure that reserved keyword AC_DEFUN is only used for its purpose.

16 years agoRemoved definition of CURL_CHECK_WORKING_RESOLVER from acinclude.m4 it has
Yang Tse [Fri, 1 Aug 2008 05:24:19 +0000 (05:24 +0000)]
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.

16 years agoSync up with reality
Yang Tse [Fri, 1 Aug 2008 03:17:38 +0000 (03:17 +0000)]
Sync up with reality

16 years agoSync up with reality
Yang Tse [Fri, 1 Aug 2008 03:10:54 +0000 (03:10 +0000)]
Sync up with reality

16 years agoRename reentrant.m4 to avoid filename clash.
Yang Tse [Fri, 1 Aug 2008 02:48:00 +0000 (02:48 +0000)]
Rename reentrant.m4 to avoid filename clash.

16 years agoUser names embedded in proxy URLs without a password were parsed
Dan Fandrich [Fri, 1 Aug 2008 02:09:08 +0000 (02:09 +0000)]
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).

16 years agoAdded more code under #ifndef CURL_DISABLE_HTTP to fix builds with
Dan Fandrich [Fri, 1 Aug 2008 01:39:24 +0000 (01:39 +0000)]
Added more code under #ifndef CURL_DISABLE_HTTP to fix builds with
--disable-http

16 years agoRefactored create_conn by breaking it up into many smaller functions
Dan Fandrich [Fri, 1 Aug 2008 00:55:43 +0000 (00:55 +0000)]
Refactored create_conn by breaking it up into many smaller functions

16 years agoMade a parameter const
Dan Fandrich [Fri, 1 Aug 2008 00:49:29 +0000 (00:49 +0000)]
Made a parameter const

16 years agoFixed a problem with any FTP URL or any URLs containing an IPv6 address
Dan Fandrich [Thu, 31 Jul 2008 22:46:29 +0000 (22:46 +0000)]
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).

16 years agoFixed parsing of an IPv6 proxy address to support a scope identifier,
Dan Fandrich [Thu, 31 Jul 2008 20:04:00 +0000 (20:04 +0000)]
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).

16 years agoSecond version of the patch addressing building outside of CVS tree
Yang Tse [Thu, 31 Jul 2008 17:58:28 +0000 (17:58 +0000)]
Second version of the patch addressing building outside of CVS tree
submitted to the mailing list 2008-07-31. Awaiting Ok to commit.

16 years agoNew CURLOPT_ADDRESS_SCOPE option in ILE/RPG binding
Patrick Monnerat [Thu, 31 Jul 2008 13:20:23 +0000 (13:20 +0000)]
New CURLOPT_ADDRESS_SCOPE option in ILE/RPG binding

16 years agoFixed keyword
Dan Fandrich [Thu, 31 Jul 2008 05:00:02 +0000 (05:00 +0000)]
Fixed keyword

16 years agoAdded keywords
Dan Fandrich [Thu, 31 Jul 2008 02:51:44 +0000 (02:51 +0000)]
Added keywords

16 years agoAdded test of IPv6 scope handling
Dan Fandrich [Thu, 31 Jul 2008 02:38:51 +0000 (02:38 +0000)]
Added test of IPv6 scope handling