mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
d11936114f
tcping does a TCP connect to the given ip/port combination. The user can specify a timeout in seconds. This is useful in shell scripts running in firewalled environments. Often SYNs are just being dropped by firewalls, thus connection establishment will be retried several times (for minutes) until a TCP timeout is reached. With tcping it is possible to check first if the desired port is reachable and then start connection establishment. Author: Marc Kirchner <mail(at)marc(dash)kirchner(dot)de> WWW: http://stud.fh-heilbronn.de/~kirchner/tcping/tcping.html PR: 60301 Submitted by: Dryice Liu
30 lines
611 B
Makefile
30 lines
611 B
Makefile
# New ports collection makefile for: tcping
|
|
# Date created: 2003-12-16
|
|
# Whom: Dryice Liu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tcping
|
|
PORTVERSION= 1.3.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://stud.fh-heilbronn.de/~kirchner/tcping/
|
|
|
|
MAINTAINER= dryice@liu.com.cn
|
|
COMMENT= Do a TCP connect to the given ip/port combination
|
|
|
|
DOCS= README
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${CC} ${CFLAGS} -DHAVE_HSTRERROR -o tcping tcping.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tcping ${PREFIX}/bin/tcping
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|