Add missing TCP timeout stubs for TinyGo
All checks were successful
TinyGo Build / tinygo-build-all (push) Successful in 2m39s

This commit is contained in:
2025-12-31 22:54:29 -06:00
parent 9fa05cce5c
commit d6e0874f05

View File

@@ -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
}