ktimeout_default.go 264 B

123456789101112131415
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build !linux
  4. package ktimeout
  5. import (
  6. "time"
  7. )
  8. // SetUserTimeout is a no-op on this platform.
  9. func SetUserTimeout(fd uintptr, timeout time.Duration) error {
  10. return nil
  11. }