//go:build linux

package tcp

import 

const (
	hasSegmentCounter = true
	hasByteCounter    = false
)

func getSegmentsSent( *tcpinfo.Info) uint64 { return uint64(.Sys.SegsOut) }
func getSegmentsRcvd( *tcpinfo.Info) uint64 { return uint64(.Sys.SegsIn) }
func getBytesSent( *tcpinfo.Info) uint64       { return 0 }
func getBytesRcvd( *tcpinfo.Info) uint64       { return 0 }