From d06438ff7414abfcc5a2a1bd13a935ee594f0842 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Sun, 5 Jun 2022 03:32:17 -0400 Subject: [Feature] Add -extended-stats for *nix platforms On *nix platforms, there is now a `-extended-stats` option that will print out some extended statistics for the test. The statistics are based on information gleaned from the `TCP_INFO` of the underlying TCP connections. What is implemented so far is just a proof of concept of the extended stats that could be calculated. Depending on what users want, we can add additional extended statistics. --- utilities/tcpinfo_other.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 utilities/tcpinfo_other.go (limited to 'utilities/tcpinfo_other.go') diff --git a/utilities/tcpinfo_other.go b/utilities/tcpinfo_other.go deleted file mode 100644 index 8dd070b..0000000 --- a/utilities/tcpinfo_other.go +++ /dev/null @@ -1,18 +0,0 @@ -//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd -// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd - -package utilities - -import ( - "net" - - "golang.org/x/sys/unix" -) - -func GetTCPInfo(connection net.Conn) (*unix.TCPInfo, error) { - return nil, NotImplemented{Functionality: "GetTCPInfo"} -} - -func PrintTCPInfo(info *unix.TCPInfo) { - return -} -- cgit v1.2.3