summaryrefslogtreecommitdiffhomepage
path: root/net/ktimeout/ktimeout_default.go
blob: 2304245b3fe215b5439e503e2f08312590af5b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause

//go:build !linux

package ktimeout

import (
	"time"
)

// SetUserTimeout is a no-op on this platform.
func SetUserTimeout(fd uintptr, timeout time.Duration) error {
	return nil
}