From d6e0874f0520d58eef4f367360803bcef841da7b Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Wed, 31 Dec 2025 22:54:29 -0600 Subject: [PATCH] Add missing TCP timeout stubs for TinyGo --- pkg/interfaces/tcp_common.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkg/interfaces/tcp_common.go b/pkg/interfaces/tcp_common.go index 434fb23..f2c4e26 100644 --- a/pkg/interfaces/tcp_common.go +++ b/pkg/interfaces/tcp_common.go @@ -14,3 +14,12 @@ import ( func platformGetRTT(fd uintptr) time.Duration { return 0 } + +func (tc *TCPClientInterface) setTimeoutsLinux() error { + return nil +} + +func (tc *TCPClientInterface) setTimeoutsOSX() error { + return nil +} +