mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
12 lines
136 B
Go
12 lines
136 B
Go
|
//go:build !linux
|
||
|
|
||
|
package netutil
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func setTCPUserTimeout(fd uintptr, timeout time.Duration) error {
|
||
|
return nil
|
||
|
}
|