diff options
author | peter <peter@FreeBSD.org> | 1997-04-13 01:17:34 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-04-13 01:17:34 +0800 |
commit | cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec (patch) | |
tree | 95743c3d61e73c384ba4166d96792d8132bcde92 /net/echoping | |
parent | 227eb2d4078c97bfac3e9fa3d193ea74b0ad338b (diff) | |
download | freebsd-ports-gnome-cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec.tar.gz freebsd-ports-gnome-cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec.tar.zst freebsd-ports-gnome-cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec.zip |
echoping is a damn useful tool for checking reachability other than
via icmp status, eg: tcp or udp. It speaks http as well, so it can
"ping" a http server or a http proxy cache to make sure it's operating
and not wedged. (Nearly all of our system lockups are not detected
by icmp pings)
Diffstat (limited to 'net/echoping')
-rw-r--r-- | net/echoping/Makefile | 18 | ||||
-rw-r--r-- | net/echoping/distinfo | 1 | ||||
-rw-r--r-- | net/echoping/files/patch-aa | 25 | ||||
-rw-r--r-- | net/echoping/pkg-comment | 1 | ||||
-rw-r--r-- | net/echoping/pkg-descr | 16 | ||||
-rw-r--r-- | net/echoping/pkg-plist | 2 |
6 files changed, 63 insertions, 0 deletions
diff --git a/net/echoping/Makefile b/net/echoping/Makefile new file mode 100644 index 000000000000..7aef1d3cae25 --- /dev/null +++ b/net/echoping/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: echoping +# Version required: 2.1-BETA +# Date created: 13 April 1997 +# Whom: peter +# +# $Id$ +# + +DISTNAME= echoping-2.1-BETA +PKGNAME= echoping-2.1b +CATEGORIES= net +MASTER_SITES= ftp://ftp.pasteur.fr/pub/Network/echoping/ + +MAINTAINER= peter@FreeBSD.ORG + +MAN1= echoping.1 + +.include <bsd.port.mk> diff --git a/net/echoping/distinfo b/net/echoping/distinfo new file mode 100644 index 000000000000..4748c5112a64 --- /dev/null +++ b/net/echoping/distinfo @@ -0,0 +1 @@ +MD5 (echoping-2.1-BETA.tar.gz) = 6d0355ba05c4ba9d8f730f0fd2748a6e diff --git a/net/echoping/files/patch-aa b/net/echoping/files/patch-aa new file mode 100644 index 000000000000..6d6c0a5cc468 --- /dev/null +++ b/net/echoping/files/patch-aa @@ -0,0 +1,25 @@ +--- Makefile.dist Thu Dec 19 21:58:15 1996 ++++ Makefile Sun Apr 13 00:54:03 1997 +@@ -1,5 +1,5 @@ + # Choose your C compiler +-CC = gcc ++#CC = gcc + #CC = cc + + # Possible options: +@@ -7,12 +7,12 @@ + # TTCP : supports the T/TCP protocol (few systems support it) + # USE_SIGACTION: uses sigaction instead of signal. Necessary on pure BSD + # machines because we need to change the semantic of signals. +-OPTIONS = -DHTTP -DUSE_SIGACTION ++OPTIONS = -DHTTP -DUSE_SIGACTION -DTTCP + + # Flags for gcc +-CFLAGS = -c -O3 $(OPTIONS) -Wall ++#CFLAGS = -c -O3 $(OPTIONS) -Wall + # Flags for cc +-#CFLAGS = -c -O $(OPTIONS) ++CFLAGS = -c -O $(OPTIONS) + + # Flags for the linker + LD = $(CC) diff --git a/net/echoping/pkg-comment b/net/echoping/pkg-comment new file mode 100644 index 000000000000..03f4202c68c2 --- /dev/null +++ b/net/echoping/pkg-comment @@ -0,0 +1 @@ +A ping-like program that uses tcp and/or http. diff --git a/net/echoping/pkg-descr b/net/echoping/pkg-descr new file mode 100644 index 000000000000..3689afee13a0 --- /dev/null +++ b/net/echoping/pkg-descr @@ -0,0 +1,16 @@ +"echoping" is a small program to test (approximatively) performances of a +remote host by sending it TCP "echo" (or other protocol) packets. + +- uses the protocols echo, discard, chargen or HTTP, +- uses UDP instead of TCP for the protocols which accept it (like echo), +- can repeat the test and display various measures about it, +- can use T/TCP on systems which support it. + +It's useful for checking that http servers are running and not wedged. + +The reference site for echoping is: + +ftp://ftp.pasteur.fr/pub/Network/echoping + +Stephane Bortzmeyer <bortzmeyer@pasteur.fr>. October 1995 for the +first version. November 1996 for this one. diff --git a/net/echoping/pkg-plist b/net/echoping/pkg-plist new file mode 100644 index 000000000000..6b755fab27da --- /dev/null +++ b/net/echoping/pkg-plist @@ -0,0 +1,2 @@ +bin/echoping +man/man1/echoping.1.gz |