all: standardize on LocalAPI

Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
Maisem Ali 2022-11-16 23:04:07 +05:00 committed by Maisem Ali
parent 22238d897b
commit 1f4669a380
7 changed files with 30 additions and 30 deletions

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// Package apitype contains types for the Tailscale local API and control plane API. // Package apitype contains types for the Tailscale LocalAPI and control plane API.
package apitype package apitype
import "tailscale.com/tailcfg" import "tailscale.com/tailcfg"

View File

@ -42,7 +42,7 @@ import (
// package-level functions. // package-level functions.
var defaultLocalClient LocalClient var defaultLocalClient LocalClient
// LocalClient is a client to Tailscale's "local API", communicating with the // LocalClient is a client to Tailscale's "LocalAPI", communicating with the
// Tailscale daemon on the local machine. Its API is not necessarily stable and // Tailscale daemon on the local machine. Its API is not necessarily stable and
// subject to changes between releases. Some API calls have stricter // subject to changes between releases. Some API calls have stricter
// compatibility guarantees, once they've been widely adopted. See method docs // compatibility guarantees, once they've been widely adopted. See method docs

View File

@ -30,7 +30,7 @@
// proxying into the tailnet. // proxying into the tailnet.
// - TS_OUTBOUND_HTTP_PROXY_LISTEN: the address on which to listen // - TS_OUTBOUND_HTTP_PROXY_LISTEN: the address on which to listen
// for HTTP proxying into the tailnet. // for HTTP proxying into the tailnet.
// - TS_SOCKET: the path where the tailscaled local API socket should // - TS_SOCKET: the path where the tailscaled LocalAPI socket should
// be created. // be created.
// - TS_AUTH_ONCE: if true, only attempt to log in if not already // - TS_AUTH_ONCE: if true, only attempt to log in if not already
// logged in. If false (the default, for backwards // logged in. If false (the default, for backwards

View File

@ -100,7 +100,7 @@ var debugCmd = &ffcli.Command{
{ {
Name: "local-creds", Name: "local-creds",
Exec: runLocalCreds, Exec: runLocalCreds,
ShortHelp: "print how to access Tailscale local API", ShortHelp: "print how to access Tailscale LocalAPI",
}, },
{ {
Name: "restun", Name: "restun",

View File

@ -282,7 +282,7 @@ func calcAdvertiseRoutes(advertiseRoutes string, advertiseDefaultRoute bool) ([]
// Note that the parameters upArgs and warnf are named intentionally // Note that the parameters upArgs and warnf are named intentionally
// to shadow the globals to prevent accidental misuse of them. This // to shadow the globals to prevent accidental misuse of them. This
// function exists for testing and should have no side effects or // function exists for testing and should have no side effects or
// outside interactions (e.g. no making Tailscale local API calls). // outside interactions (e.g. no making Tailscale LocalAPI calls).
func prefsFromUpArgs(upArgs upArgsT, warnf logger.Logf, st *ipnstate.Status, goos string) (*ipn.Prefs, error) { func prefsFromUpArgs(upArgs upArgsT, warnf logger.Logf, st *ipnstate.Status, goos string) (*ipn.Prefs, error) {
routes, err := calcAdvertiseRoutes(upArgs.advertiseRoutes, upArgs.advertiseDefaultRoute) routes, err := calcAdvertiseRoutes(upArgs.advertiseRoutes, upArgs.advertiseDefaultRoute)
if err != nil { if err != nil {

View File

@ -141,7 +141,7 @@ type Server struct {
tcpRtt metrics.LabelMap // histogram tcpRtt metrics.LabelMap // histogram
// verifyClients only accepts client connections to the DERP server if the clientKey is a // verifyClients only accepts client connections to the DERP server if the clientKey is a
// known peer in the network, as specified by a running tailscaled's client's local api. // known peer in the network, as specified by a running tailscaled's client's LocalAPI.
verifyClients bool verifyClients bool
mu sync.Mutex mu sync.Mutex