svn commit: r544106 - in head/net: . tcplog_dumper
Olivier Cochard
olivier at FreeBSD.org
Mon Aug 3 20:34:19 UTC 2020
Author: olivier
Date: Mon Aug 3 20:34:18 2020
New Revision: 544106
URL: https://svnweb.freebsd.org/changeset/ports/544106
Log:
New port: net/tcplog_dumper
Dump data from the tcp_log device.
Sponsored by: Netflix
Added:
head/net/tcplog_dumper/
head/net/tcplog_dumper/Makefile (contents, props changed)
head/net/tcplog_dumper/distinfo (contents, props changed)
head/net/tcplog_dumper/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Mon Aug 3 19:46:28 2020 (r544105)
+++ head/net/Makefile Mon Aug 3 20:34:18 2020 (r544106)
@@ -1432,6 +1432,7 @@
SUBDIR += tcpillust
SUBDIR += tcping
SUBDIR += tcpkali
+ SUBDIR += tcplog_dumper
SUBDIR += tcpmssd
SUBDIR += tcpproxy
SUBDIR += tcpreen
Added: head/net/tcplog_dumper/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/tcplog_dumper/Makefile Mon Aug 3 20:34:18 2020 (r544106)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME= tcplog_dumper
+PORTVERSION= 0.1.0
+DISTVERSIONPREFIX= v
+CATEGORIES= net
+
+MAINTAINER= olivier at FreeBSD.org
+COMMENT= Dump data from the tcp_log device
+
+LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+ONLY_FOR_ARCHS= amd64
+
+USE_GITHUB= yes
+GH_ACCOUNT= Netflix
+
+PLIST_FILES= sbin/tcplog_dumper \
+ man/man1/tcplog_dumper.1.gz
+
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1300076
+IGNORE= builds only on FreeBSD 13-head with minimum revision 356414
+.endif
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/sbin
+ ${INSTALL_PROGRAM} ${WRKSRC}/tcplog_dumper ${STAGEDIR}${PREFIX}/sbin
+ ${INSTALL_MAN} ${WRKSRC}/tcplog_dumper.1.gz ${STAGEDIR}${PREFIX}/man/man1
+
+.include <bsd.port.mk>
Added: head/net/tcplog_dumper/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/tcplog_dumper/distinfo Mon Aug 3 20:34:18 2020 (r544106)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1595634460
+SHA256 (Netflix-tcplog_dumper-v0.1.0_GH0.tar.gz) = 388ea1dbd5f47ee6141950bbfd414f3f610f2d3a91b1dedef630cddcd5d134b0
+SIZE (Netflix-tcplog_dumper-v0.1.0_GH0.tar.gz) = 19824
Added: head/net/tcplog_dumper/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/tcplog_dumper/pkg-descr Mon Aug 3 20:34:18 2020 (r544106)
@@ -0,0 +1,4 @@
+The tcplog_dumper utility pulls data from the tcp_log device and writes
+it to disk. net/read_bbrlog can be use to read those pcapng files.
+
+WWW: https://github.com/Netflix/tcplog_dumper
More information about the svn-ports-all
mailing list