mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
Add recvnet 0.0.1, recvnet (inverse telnet) is a utility for debugging
tcp connections. PR: ports/86633 Submitted by: Emanuel Haupt <ehaupt@critical.ch>
This commit is contained in:
parent
b236426ae5
commit
60f854fadf
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=143633
@ -713,6 +713,7 @@
|
||||
SUBDIR += rboot
|
||||
SUBDIR += rdesktop
|
||||
SUBDIR += rdist6
|
||||
SUBDIR += recvnet
|
||||
SUBDIR += redir
|
||||
SUBDIR += relay
|
||||
SUBDIR += rexx-sock
|
||||
|
30
net/recvnet/Makefile
Normal file
30
net/recvnet/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# New ports collection makefile for: recvnet
|
||||
# Date created: 27 Sep 2005
|
||||
# Whom: Emanuel Haupt <ehaupt@critical.ch>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= recvnet
|
||||
PORTVERSION= 0.0.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.vanheusden.com/Linux/ \
|
||||
http://critical.ch/distfiles/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= ehaupt@critical.ch
|
||||
COMMENT= Recvnet (inverse telnet) is a utility for debugging tcp connections
|
||||
|
||||
CFLAGS+= -DVERSION=\"${PORTVERSION}\"
|
||||
LDFLAGS+= -lcurses
|
||||
|
||||
PLIST_FILES= bin/recvnet
|
||||
|
||||
do-build:
|
||||
${CC} ${CFLAGS} -c ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME}.o
|
||||
${CC} ${LDFLAGS} ${WRKSRC}/${PORTNAME}.o -o ${WRKSRC}/${PORTNAME}
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
2
net/recvnet/distinfo
Normal file
2
net/recvnet/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
MD5 (recvnet-0.0.1.tgz) = d8d52cc17ffc1288316ac54ca2bf5d0e
|
||||
SIZE (recvnet-0.0.1.tgz) = 2116
|
8
net/recvnet/pkg-descr
Normal file
8
net/recvnet/pkg-descr
Normal file
@ -0,0 +1,8 @@
|
||||
Recvnet is the inverse of telnet. Instead of connecting to some host,
|
||||
it listens on a port for incoming connections. When a connection is made,
|
||||
you can type a response which will be sent to the client.
|
||||
|
||||
This tool has proven to be very useful while debugging Web browsers, httping,
|
||||
and others.
|
||||
|
||||
WWW: http://www.vanheusden.com/Linux/#recvnet
|
Loading…
Reference in New Issue
Block a user