14 lines
236 B
Go
14 lines
236 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package interfaces
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// platformGetRTT is defined in OS-specific files
|
|
// Default implementation for non-Linux platforms
|
|
func platformGetRTT(fd uintptr) time.Duration {
|
|
return 0
|
|
} |