Assume maintainership of benchmarks/spp and update to v0.4 which addresses:

- Added pointer to http://caia.swin.edu.au/reports/130730A/CAIA-TR-130730A.pdf
  - Fixed threading bug that causes segfault with newer pthread lib on Linux
  - Directory bin is now created during make (if it doesn't exists)
  - Added support for DLT_PPP frames in pcap files
  - Create fake "ip_len" if missing (observed in some TSO'ed frames)
  - Noted that IP.ID is no longer useful for disambiguating packets (RFC 6864)
  - Added "-# 8192" to hash across first 12 bytes of TCP payload
  - Added "-# 16384" to hash across all TCP Option bytes
  - Added -O option to print 'fake' (uncorrected) OWD in each direction
  - Various documentation tweaks (README and man page source)
  - Change default hash function for packet id generation to crc64 and added
  - Added -H option to select hash function (crc32 and crc64)
  - Added autotuning of delta_t_max based on actual observed clock offset
    (disabled with -T option)

Reviewed by:	tobik@
Approved by:	tobik@
Differential Revision:	https://reviews.freebsd.org/D18336
This commit is contained in:
Lawrence Stewart 2019-02-25 19:32:23 +00:00
parent a3db9ba733
commit 1df455cdcf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=493891
3 changed files with 13 additions and 6 deletions

View File

@ -2,16 +2,22 @@
# $FreeBSD$
PORTNAME= spp
PORTVERSION= 0.3.6
PORTVERSION= 0.4
CATEGORIES= benchmarks
MASTER_SITES= http://caia.swin.edu.au/tools/spp/downloads/
MASTER_SITES= https://bitbucket.org/caia-swin/spp/get/
DISTNAME= v${PORTVERSION}
DIST_SUBDIR= caia-swin-${PORTNAME}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= lstewart@FreeBSD.org
COMMENT= Calculates round trip time from pcap files or live capture
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING.txt
USES= tar:bzip2
BB_TAGNAME= 8b9f676fed0e
WRKSRC= ${WRKDIR}/caia-swin-${PORTNAME}-${BB_TAGNAME}
PLIST_FILES= bin/spp man/man1/spp.1.gz
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (spp-0.3.6.tar.gz) = 659a04e5a6f65a3bc29d9cfa518dbb4db5a25d509b1067b32bc10c4cd055ab14
SIZE (spp-0.3.6.tar.gz) = 42782
TIMESTAMP = 1543220631
SHA256 (caia-swin-spp/v0.4.tar.bz2) = f3f2d1cf3cd0c3d9e7e3da3ceb3bf4b2e7419436665f6274697535bcb561610e
SIZE (caia-swin-spp/v0.4.tar.bz2) = 47572

View File

@ -5,4 +5,4 @@ point. SPP accurately estimates the RTT experienced by any application's
traffic without needing modifications to the application itself
or the routers along the path.
WWW: http://caia.swin.edu.au/tools/spp/
WWW: https://bitbucket.org/caia-swin/spp