mirror of
https://github.com/Quad4-Software/Reticulum-Go
synced 2026-08-29 23:48:44 -04:00
15 lines
294 B
Go
15 lines
294 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright (c) 2024-2026 Quad4.io
|
|
//go: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
|
|
}
|