mirror of
https://github.com/tailscale/tailscale.git
synced 2025-07-31 00:03:47 +00:00

localclient_aliases.go was missing some package level functions from client/local. This adds them. Updates tailscale/corp#22748 Signed-off-by: Percy Wegmann <percy@tailscale.com>
107 lines
3.2 KiB
Go
107 lines
3.2 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package tailscale
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
|
|
"tailscale.com/client/local"
|
|
"tailscale.com/client/tailscale/apitype"
|
|
"tailscale.com/ipn/ipnstate"
|
|
)
|
|
|
|
// ErrPeerNotFound is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
var ErrPeerNotFound = local.ErrPeerNotFound
|
|
|
|
// LocalClient is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
type LocalClient = local.Client
|
|
|
|
// IPNBusWatcher is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
type IPNBusWatcher = local.IPNBusWatcher
|
|
|
|
// BugReportOpts is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
type BugReportOpts = local.BugReportOpts
|
|
|
|
// DebugPortMapOpts is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
type DebugPortmapOpts = local.DebugPortmapOpts
|
|
|
|
// PingOpts is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
type PingOpts = local.PingOpts
|
|
|
|
// GetCertificate is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func GetCertificate(hi *tls.ClientHelloInfo) (*tls.Certificate, error) {
|
|
return local.GetCertificate(hi)
|
|
}
|
|
|
|
// SetVersionMismatchHandler is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func SetVersionMismatchHandler(f func(clientVer, serverVer string)) {
|
|
local.SetVersionMismatchHandler(f)
|
|
}
|
|
|
|
// IsAccessDeniedError is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func IsAccessDeniedError(err error) bool {
|
|
return local.IsAccessDeniedError(err)
|
|
}
|
|
|
|
// IsPreconditionsFailedError is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func IsPreconditionsFailedError(err error) bool {
|
|
return local.IsPreconditionsFailedError(err)
|
|
}
|
|
|
|
// WhoIs is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func WhoIs(ctx context.Context, remoteAddr string) (*apitype.WhoIsResponse, error) {
|
|
return local.WhoIs(ctx, remoteAddr)
|
|
}
|
|
|
|
// Status is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func Status(ctx context.Context) (*ipnstate.Status, error) {
|
|
return local.Status(ctx)
|
|
}
|
|
|
|
// StatusWithoutPeers is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func StatusWithoutPeers(ctx context.Context) (*ipnstate.Status, error) {
|
|
return local.StatusWithoutPeers(ctx)
|
|
}
|
|
|
|
// CertPair is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func CertPair(ctx context.Context, domain string) (certPEM, keyPEM []byte, err error) {
|
|
return local.CertPair(ctx, domain)
|
|
}
|
|
|
|
// ExpandSNIName is an alias for tailscale.com/client/local.
|
|
//
|
|
// Deprecated: import tailscale.com/client/local instead.
|
|
func ExpandSNIName(ctx context.Context, name string) (fqdn string, ok bool) {
|
|
return local.ExpandSNIName(ctx, name)
|
|
}
|