// SPDX-License-Identifier: 0BSD // Copyright (c) 2024-2026 Sudo-Ivan / Quad4.io //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 }