mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-03 03:40:33 +00:00
Update of documentation for GNU TLS
This commit is contained in:
parent
76352c4e63
commit
dea4cf4220
@ -1,6 +1,8 @@
|
||||
5.1.0 (NOT YET RELEASED)
|
||||
5.1.0 (2003-11-09)
|
||||
|
||||
* GNU TLS support (alternative to OpenSSL)
|
||||
* GNU TLS support (alternative to OpenSSL),
|
||||
* Small licence change,
|
||||
* Portability fixes (MacOS X)
|
||||
|
||||
5.0.1 (2002-11-04)
|
||||
|
||||
|
13
SRC/INSTALL
13
SRC/INSTALL
@ -1,7 +1,8 @@
|
||||
echoping appears to compile and run at least on Linux, FreeBSD,
|
||||
Solaris (gcc only) and Tru64. On Mac OS X, you'll probably need a
|
||||
version >= 10.2. Some versions of RedHat 7 ship with a completely
|
||||
broken C compiler (echoping displays negative times).
|
||||
NetBSD, MacOS X, Solaris (gcc only), HP/UX and Tru64. On Mac OS X,
|
||||
you'll probably need a version >= 10.2. Some versions of RedHat 7 ship
|
||||
with a completely broken C compiler (echoping displays negative
|
||||
times).
|
||||
|
||||
You do not have to be root to install it.
|
||||
|
||||
@ -16,6 +17,8 @@ may not be available on your platform).
|
||||
--disable-http (suppress the HTTP support)
|
||||
--disable-smtp (suppress the SMTP support)
|
||||
--enable-icp (add the ICP support, to monitor Web proxies like Squid)
|
||||
--with-gnutls[=/where/is/gnutls] (add the SSL/TLS support, you will need
|
||||
the GNU TLS library <http://www.gnutls.org/>)
|
||||
--with-ssl[=/where/is/ssl] (add the SSL/TLS support, you will need
|
||||
the OpenSSL library <http://www.openssl.org/>)
|
||||
--disable-ttcp (suppress the T/TCP support which is enabled only if
|
||||
@ -24,8 +27,8 @@ may not be available on your platform).
|
||||
|
||||
There is no option to disable IPv6. echoping now uses the new (RFC
|
||||
2133) socket interface, with getnameinfo/getaddrinfo. If your system
|
||||
does not support it (Mac OS X), you have no other choices than using
|
||||
echoping 4.
|
||||
does not support it (Mac OS X <= 10.1), you have no other choices than
|
||||
using echoping 4.
|
||||
|
||||
Standard "autoconf/configure" options are supported such as --prefix
|
||||
to set the installation root directory.
|
||||
|
@ -20,7 +20,7 @@ test hosts which aren't yours.
|
||||
|
||||
Current features:
|
||||
|
||||
- uses the protocols echo, discard, chargen, HTTP (with SSL if you
|
||||
- uses the protocols echo, discard, chargen, HTTP (with SSL/TLS if you
|
||||
wish), ICP or SMTP,
|
||||
- uses UDP instead of TCP for the protocols which accept it (like echo),
|
||||
- can repeat the test and display various measures about it,
|
||||
|
2
SRC/configure
vendored
2
SRC/configure
vendored
@ -734,7 +734,7 @@ fi
|
||||
|
||||
PACKAGE=echoping
|
||||
|
||||
VERSION=5.1-BETA
|
||||
VERSION=5.1.0
|
||||
|
||||
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
||||
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
||||
|
@ -3,7 +3,7 @@ dnl $Id$
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(echoping.h)
|
||||
AC_CANONICAL_HOST
|
||||
AM_INIT_AUTOMAKE(echoping, 5.1-BETA)
|
||||
AM_INIT_AUTOMAKE(echoping, 5.1.0)
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
dnl User options
|
||||
|
Loading…
Reference in New Issue
Block a user