ceremonyclient/go-libp2p/p2p/transport/tcp/metrics_general.go

16 lines
400 B
Go
Raw Normal View History

2023-08-21 03:50:38 +00:00
//go:build !linux && !darwin && !windows
package tcp
import "github.com/mikioh/tcpinfo"
const (
hasSegmentCounter = false
hasByteCounter = false
)
func getSegmentsSent(info *tcpinfo.Info) uint64 { return 0 }
func getSegmentsRcvd(info *tcpinfo.Info) uint64 { return 0 }
func getBytesSent(info *tcpinfo.Info) uint64 { return 0 }
func getBytesRcvd(info *tcpinfo.Info) uint64 { return 0 }