mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
1df455cdcf
- 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
24 lines
543 B
Makefile
24 lines
543 B
Makefile
# Created by: Lars Eggert <lars@eggert.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= spp
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= https://bitbucket.org/caia-swin/spp/get/
|
|
DISTNAME= v${PORTVERSION}
|
|
DIST_SUBDIR= caia-swin-${PORTNAME}
|
|
|
|
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>
|