mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
New port: net/read_bbrlog
Decode BBR log dumps generated with tcplog_dumper. Sponsored by: Netflix
This commit is contained in:
parent
9b38ef5198
commit
c58f43938c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=544108
4 changed files with 46 additions and 0 deletions
|
@ -1161,6 +1161,7 @@
|
||||||
SUBDIR += rdapper
|
SUBDIR += rdapper
|
||||||
SUBDIR += rdesktop
|
SUBDIR += rdesktop
|
||||||
SUBDIR += rdist6
|
SUBDIR += rdist6
|
||||||
|
SUBDIR += read_bbrlog
|
||||||
SUBDIR += realtek-re-kmod
|
SUBDIR += realtek-re-kmod
|
||||||
SUBDIR += reaver
|
SUBDIR += reaver
|
||||||
SUBDIR += recvnet
|
SUBDIR += recvnet
|
||||||
|
|
38
net/read_bbrlog/Makefile
Normal file
38
net/read_bbrlog/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
PORTNAME= read_bbrlog
|
||||||
|
PORTVERSION= 0.1.1
|
||||||
|
DISTVERSIONPREFIX= v
|
||||||
|
CATEGORIES= net
|
||||||
|
|
||||||
|
MAINTAINER= olivier@FreeBSD.org
|
||||||
|
COMMENT= Decode BBR log dumps generated with tcplog_dumper
|
||||||
|
|
||||||
|
LICENSE= BSD2CLAUSE
|
||||||
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||||
|
|
||||||
|
ONLY_FOR_ARCHS= amd64
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${PREFIX}/include/bbparse.h:devel/bbparse
|
||||||
|
|
||||||
|
USE_GITHUB= yes
|
||||||
|
GH_ACCOUNT= Netflix
|
||||||
|
|
||||||
|
PLIST_FILES= bin/read_bbrlog \
|
||||||
|
man/man1/read_bbrlog.1.gz
|
||||||
|
|
||||||
|
CFLAGS+= -I${PREFIX}/include
|
||||||
|
LDFLAGS+= -L${PREFIX}/lib
|
||||||
|
|
||||||
|
.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}/bin
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/read_bbrlog ${STAGEDIR}${PREFIX}/bin
|
||||||
|
${INSTALL_MAN} ${WRKSRC}/read_bbrlog.1.gz ${STAGEDIR}${PREFIX}/man/man1
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
3
net/read_bbrlog/distinfo
Normal file
3
net/read_bbrlog/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
TIMESTAMP = 1596381036
|
||||||
|
SHA256 (Netflix-read_bbrlog-v0.1.1_GH0.tar.gz) = aad8ddc00098fa9f4464148b128dda115279cdf30c0efa4f3169a56ceaae1936
|
||||||
|
SIZE (Netflix-read_bbrlog-v0.1.1_GH0.tar.gz) = 45003
|
4
net/read_bbrlog/pkg-descr
Normal file
4
net/read_bbrlog/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
The read_bbrlog is a utility that knows how to read the pcapng[.xz] files
|
||||||
|
created by the net/tcplog_dumper from BBR.
|
||||||
|
|
||||||
|
WWW: https://github.com/Netflix/read_bbrlog
|
Loading…
Add table
Reference in a new issue