move platformGetRTT implementation to tcp_common.go for non-Linux platforms

This commit is contained in:
2025-11-20 21:24:58 -06:00
parent 426422413c
commit ded5853026
4 changed files with 10 additions and 12 deletions

View File

@@ -6,7 +6,6 @@ import (
"fmt"
"net"
"syscall"
"time"
"github.com/Sudo-Ivan/reticulum-go/pkg/debug"
)
@@ -58,7 +57,3 @@ func (tc *TCPClientInterface) setTimeoutsOSX() error {
return nil
}
func platformGetRTT(fd uintptr) time.Duration {
return 0
}