1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

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)
This commit is contained in:
Peter Wemm 1997-04-12 17:17:34 +00:00
parent 779567a7ed
commit 358c5baa72
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=6196
6 changed files with 63 additions and 0 deletions

18
net/echoping/Makefile Normal file
View File

@ -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>

1
net/echoping/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (echoping-2.1-BETA.tar.gz) = 6d0355ba05c4ba9d8f730f0fd2748a6e

View File

@ -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)

1
net/echoping/pkg-comment Normal file
View File

@ -0,0 +1 @@
A ping-like program that uses tcp and/or http.

16
net/echoping/pkg-descr Normal file
View File

@ -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.

2
net/echoping/pkg-plist Normal file
View File

@ -0,0 +1,2 @@
bin/echoping
man/man1/echoping.1.gz