mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-16 03:31:39 +00:00

Updates #5794 Change-Id: I8c466cae25ae79be1097450a63e8c25c7b519331 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
20 lines
410 B
Go
20 lines
410 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build aix || solaris || illumos
|
|
|
|
package tstun
|
|
|
|
import (
|
|
"github.com/tailscale/wireguard-go/tun"
|
|
"tailscale.com/types/logger"
|
|
)
|
|
|
|
func New(logf logger.Logf, tunName string) (tun.Device, string, error) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func Diagnose(logf logger.Logf, tunName string, err error) {
|
|
panic("not implemented")
|
|
}
|