mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 15:33:55 +02:00
c79d91f419
split-ping is a tool that can tell you what direction packet latency or loss is on. This can be handy for network debugging and locating congestion.
23 lines
425 B
Makefile
23 lines
425 B
Makefile
COMMENT = split ping, identify direction of loss or latency
|
|
|
|
MODGO_MODNAME = github.com/benjojo/sping
|
|
MODGO_VERSION = v0.0.0-20230919143834-287083dd1ec5
|
|
|
|
DISTNAME = sping-${MODGO_VERSION}
|
|
PKGNAME = sping-0.0.20230919
|
|
|
|
HOMEPAGE = https://blog.benjojo.co.uk/post/ping-with-loss-latency-split
|
|
|
|
CATEGORIES = net
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES = lang/go
|
|
|
|
.include "modules.inc"
|
|
|
|
.include <bsd.port.mk>
|