blob: c0f89ed237bdee115b8cdc7bf89b2bf029736f9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd
package extendedstats
import (
"net"
"golang.org/x/sys/unix"
)
type ExtendedStats struct{}
func (es *ExtendedStats) IncorporateConnectionStats(conn net.Conn) {}
func (es *ExtendedStats) Repr() string {
return ""
}
func ExtendedStatsAvailable() bool {
return false
}
|