1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

Add http_ping 20010709, a program that sends HTTP requests every few

seconds and times how long they take.  Similar to ping(8).
This commit is contained in:
Dima Dorfman 2001-08-11 18:55:26 +00:00
parent 5a8df3099a
commit 3375d4b911
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=46089
6 changed files with 33 additions and 0 deletions

View File

@ -133,6 +133,7 @@
SUBDIR += hesiod
SUBDIR += hlmaster
SUBDIR += host
SUBDIR += http_ping
SUBDIR += hx
SUBDIR += icb
SUBDIR += icmpinfo

24
net/http_ping/Makefile Normal file
View File

@ -0,0 +1,24 @@
# New ports collection makefile for: http_ping
# Date created: 11 August 2001
# Whom: dd
#
# $FreeBSD$
#
PORTNAME= http_ping
PORTVERSION= 20010709
CATEGORIES= net
MASTER_SITES= http://www.acme.com/software/http_ping/
DISTNAME= ${PORTNAME}_09jul2001
MAINTAINER= dd@FreeBSD.org
WRKSRC= ${WRKDIR}/${PORTNAME}
MAN1= http_ping.1
MANCOMPRESSED= no
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/http_ping ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/http_ping.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

1
net/http_ping/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (http_ping_09jul2001.tar.gz) = b8420963e72282691b11efc2983e4dd3

View File

@ -0,0 +1 @@
Sends HTTP requests every few seconds and times how long they take

5
net/http_ping/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
http_ping is like the regular ping(8) command, except that it sends
HTTP requests isntead of ICMP echo requests. I.e., it runs an HTTP
fetch every few seconds, timing how long they take.
WWW: http://www.acme.com/software/http_ping/

1
net/http_ping/pkg-plist Normal file
View File

@ -0,0 +1 @@
bin/http_ping