2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-02-23 03:29:54 +00:00
|
|
|
|
2021-08-05 23:42:39 +01:00
|
|
|
//go:build !windows
|
2021-02-23 03:29:54 +00:00
|
|
|
|
2021-03-27 05:07:19 +00:00
|
|
|
package tstun
|
2021-02-23 03:29:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2022-12-09 23:12:20 +00:00
|
|
|
"github.com/tailscale/wireguard-go/tun"
|
2021-02-23 03:29:54 +00:00
|
|
|
"tailscale.com/types/logger"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Dummy implementation that does nothing.
|
|
|
|
func waitInterfaceUp(iface tun.Device, timeout time.Duration, logf logger.Logf) error {
|
|
|
|
return nil
|
|
|
|
}
|