summaryrefslogtreecommitdiff
path: root/utilities/tcpinfo_other.go
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/tcpinfo_other.go')
-rw-r--r--utilities/tcpinfo_other.go18
1 files changed, 0 insertions, 18 deletions
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
-}