platform/upstream/curl.git
16 years agoAdded SSH failure test cases 628-632
Dan Fandrich [Thu, 19 Jun 2008 00:18:58 +0000 (00:18 +0000)]
Added SSH failure test cases 628-632

16 years ago- Rob Crittenden brought a fix for the NSS layer that makes libcurl no longer
Daniel Stenberg [Wed, 18 Jun 2008 22:01:55 +0000 (22:01 +0000)]
- Rob Crittenden brought a fix for the NSS layer that makes libcurl no longer
  always fire up a new connection rather than using the existing one when the
  multi interface is used. Original bug report:
  https://bugzilla.redhat.com/show_bug.cgi?id=450140

16 years agoremoved warning about unused argument by simply removing that argument from
Daniel Stenberg [Wed, 18 Jun 2008 21:50:40 +0000 (21:50 +0000)]
removed warning about unused argument by simply removing that argument from
the check_issuer_cert() proto

16 years agocheck_issuer_cert() now builds and there's one warning less. Still one compiler
Daniel Stenberg [Wed, 18 Jun 2008 21:48:51 +0000 (21:48 +0000)]
check_issuer_cert() now builds and there's one warning less. Still one compiler
warning in the code though but we need NSS' base64.h header for that and we
don't currently have a suitable way to include it as our own base64.h header
kind of "blocks" it.

16 years agoNo longer break out of a shell "for" statement from inside
Yang Tse [Wed, 18 Jun 2008 04:39:29 +0000 (04:39 +0000)]
No longer break out of a shell "for" statement from inside
AC_FOO_IFELSE macros, otherwise temp files are not removed.

Identation adjustment.

16 years agoIn checkPendPipeline() we can't be setting the TIMER_CONNECT correctly as that
Daniel Stenberg [Fri, 13 Jun 2008 21:16:10 +0000 (21:16 +0000)]
In checkPendPipeline() we can't be setting the TIMER_CONNECT correctly as that
is for the TCP connect. I changed it to TIMER_PRETRANSFER which seems to be
what was intended here.

16 years agofixed the language somewhat
Daniel Stenberg [Fri, 13 Jun 2008 20:45:34 +0000 (20:45 +0000)]
fixed the language somewhat

16 years agoFixed curl-config --ca which wasn't being exported by configure.
Dan Fandrich [Fri, 13 Jun 2008 00:03:12 +0000 (00:03 +0000)]
Fixed curl-config --ca which wasn't being exported by configure.

16 years agoAdded IPv6 keywords for some more tests that require IPv6 networking support
Dan Fandrich [Thu, 12 Jun 2008 23:50:57 +0000 (23:50 +0000)]
Added IPv6 keywords for some more tests that require IPv6 networking support

16 years agofixed bad infof() usage!
Daniel Stenberg [Thu, 12 Jun 2008 22:00:35 +0000 (22:00 +0000)]
fixed bad infof() usage!

16 years agoadded the versions of a range of build tools that we want to remain to work
Daniel Stenberg [Thu, 12 Jun 2008 21:16:00 +0000 (21:16 +0000)]
added the versions of a range of build tools that we want to remain to work

16 years agoMy first attempt at documenting what we try to support and make curl run with
Daniel Stenberg [Thu, 12 Jun 2008 21:03:16 +0000 (21:03 +0000)]
My first attempt at documenting what we try to support and make curl run with
in regard to C standard, third party libraries and operating systems etc.

16 years ago- I did a cleanup of the internal generic SSL layer and how the various SSL
Daniel Stenberg [Wed, 11 Jun 2008 17:01:58 +0000 (17:01 +0000)]
- I did a cleanup of the internal generic SSL layer and how the various SSL
  libraries are supported. Starting now, each underlying SSL library support
  code does a set of defines for the 16 functions the generic layer (sslgen.c)
  uses (all these new function defines use the prefix "curlssl_"). This
  greatly simplified the generic layer in readability by involving much less
  #ifdefs and other preprocessor stuff and should make it easier for people to
  make libcurl work with new SSL libraries.

  Hopefully I can later on document these 16 functions somewhat as well.

  I also made most of the internal SSL-dependent functions (using Curl_ssl_
  prefix) #defined to nothing when no SSL support is requested - previously
  they would unnecessarily call mostly empty functions.

16 years agofix compiler warning: conversion from `pointer to void' to `pointer to int
Yang Tse [Wed, 11 Jun 2008 15:26:04 +0000 (15:26 +0000)]
fix compiler warning: conversion from `pointer to void' to `pointer to int
function(pointer to char,int,int,pointer to void)' is compiler dependent

16 years agoenable additional CFLAGS from commandline.
Gunter Knauf [Wed, 11 Jun 2008 00:07:08 +0000 (00:07 +0000)]
enable additional CFLAGS from commandline.

16 years agofix warning in GnuTLS build by making sure Curl_gtls_send() takes a const
Daniel Stenberg [Tue, 10 Jun 2008 21:53:59 +0000 (21:53 +0000)]
fix warning in GnuTLS build by making sure Curl_gtls_send() takes a const
void *

16 years ago- I made the OpenSSL code build again with OpenSSL 0.9.6. The CRLFILE
Daniel Stenberg [Tue, 10 Jun 2008 20:49:17 +0000 (20:49 +0000)]
- I made the OpenSSL code build again with OpenSSL 0.9.6. The CRLFILE
  functionality killed it due to its unconditional use of
  X509_STORE_set_flags...

16 years agoCURLOPT_CRLFILE and CURLOPT_ISSUERCERT are new string options
Michal Marek [Mon, 9 Jun 2008 11:13:19 +0000 (11:13 +0000)]
CURLOPT_CRLFILE and CURLOPT_ISSUERCERT are new string options

16 years agofix pkg-config reporting of private libraries needed for static linking
Yang Tse [Mon, 9 Jun 2008 01:06:48 +0000 (01:06 +0000)]
fix pkg-config reporting of private libraries needed for static linking

16 years agoenable additional CFLAGS from commandline.
Gunter Knauf [Sun, 8 Jun 2008 22:29:34 +0000 (22:29 +0000)]
enable additional CFLAGS from commandline.

16 years ago7.19.0 is next
Daniel Stenberg [Sun, 8 Jun 2008 22:00:42 +0000 (22:00 +0000)]
7.19.0 is next

16 years agothe next release is now called 7.19.0
Daniel Stenberg [Sun, 8 Jun 2008 21:04:46 +0000 (21:04 +0000)]
the next release is now called 7.19.0

16 years ago- curl the tool now deals with its command line options somewhat differently!
Daniel Stenberg [Sun, 8 Jun 2008 20:53:49 +0000 (20:53 +0000)]
- curl the tool now deals with its command line options somewhat differently!
  All boolean options (such as -O, -I, -v etc), both short and long versions,
  now always switch on/enable the option named. Using the same option multiple
  times thus make no difference. To switch off one of those options, you need
  to use the long version of the option and type --no-OPTION. Like to disable
  verbose mode you use --no-verbose!

- Added --remote-name-all to curl, which if used changes the default for all
  given URLs to be dealt with as if -O is used. So if you want to disable that
  for a specific URL after --remote-name-all has been used, you muse use -o -
  or --no-remote-name.

16 years agouse our *printf functions only.
Gunter Knauf [Sun, 8 Jun 2008 15:52:03 +0000 (15:52 +0000)]
use our *printf functions only.

16 years agoMoved all changes from 2007 from CHANGES to CHANGES.0
Daniel Stenberg [Fri, 6 Jun 2008 22:11:24 +0000 (22:11 +0000)]
Moved all changes from 2007 from CHANGES to CHANGES.0

16 years agocode style cleanup
Daniel Stenberg [Fri, 6 Jun 2008 20:57:32 +0000 (20:57 +0000)]
code style cleanup

16 years ago- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, for
Daniel Stenberg [Fri, 6 Jun 2008 20:52:32 +0000 (20:52 +0000)]
- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, for
  OpenSSL, NSS and GnuTLS-built libcurls.

16 years agoMSVC does build Windows native targets
Yang Tse [Fri, 6 Jun 2008 18:44:39 +0000 (18:44 +0000)]
MSVC does build Windows native targets

16 years agomention added in 7.18.3
Daniel Stenberg [Fri, 6 Jun 2008 18:40:58 +0000 (18:40 +0000)]
mention added in 7.18.3

16 years ago- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for
Daniel Stenberg [Fri, 6 Jun 2008 18:40:21 +0000 (18:40 +0000)]
- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for
  OpenSSL, NSS and GnuTLS-built libcurls.

16 years ago- Added CURLINFO_PRIMARY_IP as a new information retrievable with
Daniel Stenberg [Fri, 6 Jun 2008 17:33:35 +0000 (17:33 +0000)]
- Added CURLINFO_PRIMARY_IP as a new information retrievable with
  curl_easy_getinfo. It returns a pointer to a string with the most recently
  used IP address. Modified test case 500 to also verify this feature. The
  implementing of this feature was sponsored by Lenny Rachitsky at NeuStar.

16 years ago7.18.2 is done now
Daniel Stenberg [Thu, 5 Jun 2008 12:33:33 +0000 (12:33 +0000)]
7.18.2 is done now

16 years agoMention the minimum Symbian OS version required.
Dan Fandrich [Thu, 5 Jun 2008 00:15:01 +0000 (00:15 +0000)]
Mention the minimum Symbian OS version required.

16 years agoMention a few options that require an argument in --help
Dan Fandrich [Wed, 4 Jun 2008 23:44:53 +0000 (23:44 +0000)]
Mention a few options that require an argument in --help

16 years agostart working on 7.18.3!
Daniel Stenberg [Wed, 4 Jun 2008 16:05:48 +0000 (16:05 +0000)]
start working on 7.18.3!

16 years agonew contributors from the 7.18.2 release
Daniel Stenberg [Wed, 4 Jun 2008 16:03:54 +0000 (16:03 +0000)]
new contributors from the 7.18.2 release

16 years ago7.18.2
Daniel Stenberg [Wed, 4 Jun 2008 15:38:27 +0000 (15:38 +0000)]
7.18.2

16 years agoFixed a problem where telnet data would be lost if an EWOULDBLOCK
Dan Fandrich [Tue, 3 Jun 2008 18:03:11 +0000 (18:03 +0000)]
Fixed a problem where telnet data would be lost if an EWOULDBLOCK
condition were encountered.

16 years agoFixed typo in comment
Dan Fandrich [Tue, 3 Jun 2008 18:00:48 +0000 (18:00 +0000)]
Fixed typo in comment

16 years agocurl returns 0 for these options now
Daniel Stenberg [Sun, 1 Jun 2008 22:10:21 +0000 (22:10 +0000)]
curl returns 0 for these options now

16 years agonow returns 0
Daniel Stenberg [Sun, 1 Jun 2008 22:04:09 +0000 (22:04 +0000)]
now returns 0

16 years ago(committed this for Marty Kuhrt:)
Daniel Stenberg [Sun, 1 Jun 2008 17:59:53 +0000 (17:59 +0000)]
(committed this for Marty Kuhrt:)
- Updated main.c to return CURLE_OK if PARAM_HELP_REQUESTED was returned
  from getparameter instead of CURLE_FAILED_INIT.  No point in returning
  an error if --help or --version were requested.

16 years agoreturn CURLE_OK instead of CURLE_FAILED_INIT if PARAM_HEKP_REQUESTED returned by...
Marty Kuhrt [Sun, 1 Jun 2008 16:01:37 +0000 (16:01 +0000)]
return CURLE_OK instead of CURLE_FAILED_INIT if PARAM_HEKP_REQUESTED returned by getparameter

16 years agoFix problem: 'result' may be used uninitialized.
Yang Tse [Sat, 31 May 2008 01:37:21 +0000 (01:37 +0000)]
Fix problem: 'result' may be used uninitialized.
Issue detected by Guenter Knauf's NetWare autobuild.

16 years agoupdated to match curlmsg.msg 1.7
Marty Kuhrt [Fri, 30 May 2008 23:53:25 +0000 (23:53 +0000)]
updated to match curlmsg.msg 1.7

16 years agoresync with curl.h messages
Marty Kuhrt [Fri, 30 May 2008 23:52:06 +0000 (23:52 +0000)]
resync with curl.h messages

16 years agoresync with curl.h curle_ messages
Marty Kuhrt [Fri, 30 May 2008 23:51:09 +0000 (23:51 +0000)]
resync with curl.h curle_ messages

16 years agoBrad House fixed a missing header file inclusion in adig sample program
Yang Tse [Fri, 30 May 2008 15:26:42 +0000 (15:26 +0000)]
Brad House fixed a missing header file inclusion in adig sample program

16 years agoAdded a new "13. Web Login" chapter
Daniel Stenberg [Thu, 29 May 2008 21:48:15 +0000 (21:48 +0000)]
Added a new "13. Web Login" chapter

16 years agostart working on 1.5.3
Daniel Stenberg [Thu, 29 May 2008 20:39:18 +0000 (20:39 +0000)]
start working on 1.5.3

16 years ago1.5.2
Daniel Stenberg [Thu, 29 May 2008 20:10:40 +0000 (20:10 +0000)]
1.5.2

16 years agoFixed 142 and 143
Daniel Stenberg [Wed, 28 May 2008 20:57:03 +0000 (20:57 +0000)]
Fixed 142 and 143
Moved 144 to 7.18.3 instead

16 years ago- Emil Romanus found a problem and helped me repeat it. It occured when using
Daniel Stenberg [Wed, 28 May 2008 20:56:19 +0000 (20:56 +0000)]
- Emil Romanus found a problem and helped me repeat it. It occured when using
  the curl_multi_socket() API with HTTP pipelining enabled and could lead to
  the pipeline basically stalling for a very long period of time until it took
  off again.

16 years ago- Jeff Weber reported memory leaks with aborted SCP and SFTP transfers and
Daniel Stenberg [Wed, 28 May 2008 20:31:28 +0000 (20:31 +0000)]
- Jeff Weber reported memory leaks with aborted SCP and SFTP transfers and
  provided excellent repeat recipes. I fixed the cases I managed to reproduce
  but Jeff still got some (SCP) problems even after these fixes:
  http://curl.haxx.se/mail/lib-2008-05/0342.html

16 years agoKnown bug #55, libcurl fails to build with MIT Kerberos for Windows (KfW)
Yang Tse [Tue, 27 May 2008 16:10:51 +0000 (16:10 +0000)]
Known bug #55, libcurl fails to build with MIT Kerberos for Windows (KfW)
due to KfW's library header files exporting symbols/macros that should be
kept private to the KfW library. See ticket #5601 at http://krbdev.mit.edu/rt/

16 years ago- Bug report #1973352 (http://curl.haxx.se/bug/view.cgi?id=1973352) identified
Daniel Stenberg [Mon, 26 May 2008 20:39:41 +0000 (20:39 +0000)]
- Bug report #1973352 (curl.haxx.se/bug/view.cgi?id=1973352) identified
  how the HTTP redirect following code didn't properly follow to a new URL if
  the new url was but a query string such as "Location: ?moo=foo". Test case
  1031 was added to verify this fix.

16 years agoI'd like to see this fixed for the 7.18,2:
Daniel Stenberg [Mon, 26 May 2008 16:05:29 +0000 (16:05 +0000)]
I'd like to see this fixed for the 7.18,2:

144 - Help apps use 64bit/LFS libcurl

16 years agoAndreas Faerber and Scott McCreary made (lib)curl build for the Haiku OS
Daniel Stenberg [Mon, 26 May 2008 15:09:28 +0000 (15:09 +0000)]
Andreas Faerber and Scott McCreary made (lib)curl build for the Haiku OS

16 years agoAdded Haiku OS, sorted the list of i386 OSes
Daniel Stenberg [Mon, 26 May 2008 15:06:51 +0000 (15:06 +0000)]
Added Haiku OS, sorted the list of i386 OSes

16 years agofix compiler warning: unreferenced formal parameter
Yang Tse [Mon, 26 May 2008 13:52:25 +0000 (13:52 +0000)]
fix compiler warning: unreferenced formal parameter

16 years agoDavid Rosenstrauch reported that header files spnegohelp.h and
Yang Tse [Mon, 26 May 2008 03:10:34 +0000 (03:10 +0000)]
David Rosenstrauch reported that header files spnegohelp.h and
openssl/objects.h were needed to compile SPNEGO support.

16 years agofix: preprocessor complaining about macro redefinition
Yang Tse [Mon, 26 May 2008 01:59:00 +0000 (01:59 +0000)]
fix: preprocessor complaining about macro redefinition

16 years agosummary of the current outstanding issues for upcoming and the subsequent
Daniel Stenberg [Sat, 24 May 2008 19:28:31 +0000 (19:28 +0000)]
summary of the current outstanding issues for upcoming and the subsequent
releases

16 years agoChristopher Palow's multi interface docs updates
Daniel Stenberg [Sat, 24 May 2008 19:19:49 +0000 (19:19 +0000)]
Christopher Palow's multi interface docs updates

16 years agoNikolai Kondrashov for his man page update
Daniel Stenberg [Sat, 24 May 2008 11:20:11 +0000 (11:20 +0000)]
Nikolai Kondrashov for his man page update

16 years agoNikolai Kondrashov provided a clarification for CURLOPT_HEADERFUNCTION
Daniel Stenberg [Sat, 24 May 2008 11:19:51 +0000 (11:19 +0000)]
Nikolai Kondrashov provided a clarification for CURLOPT_HEADERFUNCTION

16 years agolist all local sources the (demo) tools need, add a few missing scripts to
Daniel Stenberg [Fri, 23 May 2008 21:52:56 +0000 (21:52 +0000)]
list all local sources the (demo) tools need, add a few missing scripts to
the dist tarball and remove a two duplicate file names from EXTRA_DIST
(most of it pointed out by Yang Tse)

16 years agothis is not used (anymore)
Daniel Stenberg [Fri, 23 May 2008 21:46:29 +0000 (21:46 +0000)]
this is not used (anymore)

16 years agoAdded some more to do items and a known bug.
Dan Fandrich [Fri, 23 May 2008 20:52:46 +0000 (20:52 +0000)]
Added some more to do items and a known bug.

16 years agoDan Fandrich pointed out that this is the way we should increase the number
Daniel Stenberg [Fri, 23 May 2008 17:56:03 +0000 (17:56 +0000)]
Dan Fandrich pointed out that this is the way we should increase the number
for 7.18.2 since we have added functions in this release.

http://curl.haxx.se/mail/lib-2008-05/0240.html

16 years agoMade sure to pass longs in to curl_easy_setopt where necessary in the
Dan Fandrich [Thu, 22 May 2008 21:49:52 +0000 (21:49 +0000)]
Made sure to pass longs in to curl_easy_setopt where necessary in the
libtest code.

16 years agoFixed a surprising number of example programs that were passing int arguments
Dan Fandrich [Thu, 22 May 2008 21:20:07 +0000 (21:20 +0000)]
Fixed a surprising number of example programs that were passing int arguments
to curl_easy_setopt instead of long.

16 years agowe bump the SO "revision" for next release due to the new functions added
Daniel Stenberg [Thu, 22 May 2008 20:34:47 +0000 (20:34 +0000)]
we bump the SO "revision" for next release due to the new functions added

16 years agoFixed some include file problems on Windows reported by David Rosenstrauch
Dan Fandrich [Thu, 22 May 2008 19:44:10 +0000 (19:44 +0000)]
Fixed some include file problems on Windows reported by David Rosenstrauch

16 years agomake sure the configure.ac file with the correct version number is shipped
Daniel Stenberg [Thu, 22 May 2008 17:41:29 +0000 (17:41 +0000)]
make sure the configure.ac file with the correct version number is shipped
in the tarball

16 years agoMSVC6+ clean-up targets must also remove acountry.exe
Yang Tse [Thu, 22 May 2008 16:10:57 +0000 (16:10 +0000)]
MSVC6+ clean-up targets must also remove acountry.exe

16 years agosync with reality
Yang Tse [Thu, 22 May 2008 15:31:06 +0000 (15:31 +0000)]
sync with reality

16 years agoRenamed MSDOS_FILESYSTEM to avoid conflict with MIT GSS
Dan Fandrich [Wed, 21 May 2008 21:36:42 +0000 (21:36 +0000)]
Renamed MSDOS_FILESYSTEM to avoid conflict with MIT GSS

16 years agoRemoved some duplicated #includes
Dan Fandrich [Wed, 21 May 2008 21:08:31 +0000 (21:08 +0000)]
Removed some duplicated #includes

16 years agofix: [action-if-found] part of AC_CHECK_TYPE macro cannot be quoted when empty
Yang Tse [Wed, 21 May 2008 18:24:09 +0000 (18:24 +0000)]
fix: [action-if-found] part of AC_CHECK_TYPE macro cannot be quoted when empty

16 years agofix: remove need and definition of HAVE_SOCKLEN_T symbol
Yang Tse [Wed, 21 May 2008 14:04:14 +0000 (14:04 +0000)]
fix: remove need and definition of HAVE_SOCKLEN_T symbol

16 years agofix: socklen_t definition comment
Yang Tse [Wed, 21 May 2008 13:57:50 +0000 (13:57 +0000)]
fix: socklen_t definition comment

16 years agoWhen unable to properly detect gethostbyname_r() usage, configure
Yang Tse [Tue, 20 May 2008 17:30:41 +0000 (17:30 +0000)]
When unable to properly detect gethostbyname_r() usage, configure
script will simply issue a warning and gethostbyname() will be used.

16 years agoupdate several macros using AC_TRY_LINK with AC_LINK_IFELSE
Yang Tse [Tue, 20 May 2008 15:55:31 +0000 (15:55 +0000)]
update several macros using AC_TRY_LINK with AC_LINK_IFELSE

16 years agoAdapting last changes to OS400:
Patrick Monnerat [Tue, 20 May 2008 10:21:50 +0000 (10:21 +0000)]
Adapting last changes to OS400:
_ Updated packages/OS400/curl.inc.in with new definitions.
_ New connect/bind/sendto/recvfrom wrappers to support AF_UNIX sockets.
_ Include files line length shortened below 100 chars.
_ Const parameter in lib/qssl.[ch].
_ Typos in packages/OS400/initscript.sh.

16 years agofix underquoting of AC_LANG_PROGRAM arguments
Yang Tse [Tue, 20 May 2008 04:23:30 +0000 (04:23 +0000)]
fix underquoting of AC_LANG_PROGRAM arguments

16 years agoif'def out private function ares__tvdiff(), it is not in use yet.
Yang Tse [Tue, 20 May 2008 01:24:19 +0000 (01:24 +0000)]
if'def out private function ares__tvdiff(), it is not in use yet.

16 years agoupdate several macros using AC_TRY_LINK with AC_LINK_IFELSE
Yang Tse [Tue, 20 May 2008 01:03:45 +0000 (01:03 +0000)]
update several macros using AC_TRY_LINK with AC_LINK_IFELSE

16 years ago- When trying to repeat a multi interface problem I fell over a few multi
Daniel Stenberg [Mon, 19 May 2008 20:58:12 +0000 (20:58 +0000)]
- When trying to repeat a multi interface problem I fell over a few multi
  interface problems:

  o with pipelining disabled, the state should never be set to WAITDO but
    rather go straight to DO

  o we had multiple states for which the internal function returned no socket
    at all to wait for, with the effect that libcurl calls the socket callback
    (when curl_multi_socket() is used) with REMOVE prematurely (as it would be
    added again within very shortly)

  o when in DO and DOING states, the HTTP and HTTPS protocol handler functions
    didn't return that the socket should be waited for writing, but instead it
    was treated as if no socket was needing monitoring so again REMOVE was
    called prematurely.

16 years agowith pipelining disabled, the state should never be set to WAITDO but rather
Daniel Stenberg [Mon, 19 May 2008 20:58:01 +0000 (20:58 +0000)]
with pipelining disabled, the state should never be set to WAITDO but rather
go straight to DO

we had multiple states for which the internal function returned no socket at
all to wait for, with the effect that libcurl calls the socket callback (when
curl_multi_socket() is used) with REMOVE prematurely (as it would be added
again within very shortly)

16 years agowhen the multi handle was in DO and DOING states, the HTTP and HTTPS protocol
Daniel Stenberg [Mon, 19 May 2008 20:57:28 +0000 (20:57 +0000)]
when the multi handle was in DO and DOING states, the HTTP and HTTPS protocol
handler functions didn't return that the socket should be waited for writing,
but instead it was treated as if no socket was needing monitoring so REMOVE
was called prematurely

16 years agochange the code style to be more curlish, and changed some of the output
Daniel Stenberg [Mon, 19 May 2008 20:40:53 +0000 (20:40 +0000)]
change the code style to be more curlish, and changed some of the output
to be more descriptive and finally set VERBOSE mode to 1 by default

16 years agobetter select() function detection that works
Yang Tse [Mon, 19 May 2008 16:57:56 +0000 (16:57 +0000)]
better select() function detection that works
even when cross compiling a Windows target.

16 years agofix socklen_t equivalent detection when cross compiling Windows target
Yang Tse [Mon, 19 May 2008 12:31:11 +0000 (12:31 +0000)]
fix socklen_t equivalent detection when cross compiling Windows target

16 years agoif WINSOCK2 API is used link with 'ws2_32', else
Yang Tse [Mon, 19 May 2008 02:50:29 +0000 (02:50 +0000)]
if WINSOCK2 API is used link with 'ws2_32', else

if WINSOCK API is used under WinCE link with 'winsock', else

if WINSOCK API is used link with 'wsock32'.

16 years agoon winsock systems linking is done using library 'ws2_32' when
Yang Tse [Sun, 18 May 2008 20:13:13 +0000 (20:13 +0000)]
on winsock systems linking is done using library 'ws2_32' when
winsock2.h is available, and library 'winsock' is used when only
winsock.h is available.

16 years agominor change for wince-cegcc and wince-mingw32ce support
Yang Tse [Sat, 17 May 2008 01:20:56 +0000 (01:20 +0000)]
minor change for wince-cegcc and wince-mingw32ce support

16 years agoremoved lots of warnings
Daniel Stenberg [Fri, 16 May 2008 21:14:50 +0000 (21:14 +0000)]
removed lots of warnings

16 years agomillisecond resolution support followup
Yang Tse [Thu, 15 May 2008 22:57:33 +0000 (22:57 +0000)]
millisecond resolution support followup

16 years agoIncluded stdint.h to get the intptr_t type (needed on OpenBSD at least).
Dan Fandrich [Thu, 15 May 2008 22:31:23 +0000 (22:31 +0000)]
Included stdint.h to get the intptr_t type (needed on OpenBSD at least).