mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-04 15:26:00 +00:00
ipn/ipnauth,util/syspolicy: improve comments
Updates #cleanup Updates #14823 Signed-off-by: Nick Khyl <nickk@tailscale.com>
This commit is contained in:
parent
02ad21717f
commit
0a51bbc765
@ -5,7 +5,10 @@ package ipnauth
|
|||||||
|
|
||||||
// ProfileAccess is a bitmask representing the requested, required, or granted
|
// ProfileAccess is a bitmask representing the requested, required, or granted
|
||||||
// access rights to an [ipn.LoginProfile].
|
// access rights to an [ipn.LoginProfile].
|
||||||
type ProfileAccess uint32
|
//
|
||||||
|
// It is not to be written to disk or transmitted over the network in its integer form,
|
||||||
|
// but rather serialized to a string or other format if ever needed.
|
||||||
|
type ProfileAccess uint
|
||||||
|
|
||||||
// Define access rights that might be granted or denied on a per-profile basis.
|
// Define access rights that might be granted or denied on a per-profile basis.
|
||||||
const (
|
const (
|
||||||
|
@ -27,8 +27,9 @@ type Actor interface {
|
|||||||
// a connected LocalAPI client. Otherwise, it returns a zero value and false.
|
// a connected LocalAPI client. Otherwise, it returns a zero value and false.
|
||||||
ClientID() (_ ClientID, ok bool)
|
ClientID() (_ ClientID, ok bool)
|
||||||
|
|
||||||
// CheckProfileAccess checks whether the actor has the requested access rights
|
// CheckProfileAccess checks whether the actor has the necessary access rights
|
||||||
// to the specified Tailscale profile. It returns an error if the access is denied.
|
// to perform a given action on the specified Tailscale profile.
|
||||||
|
// It returns an error if access is denied.
|
||||||
CheckProfileAccess(profile ipn.LoginProfileView, requestedAccess ProfileAccess) error
|
CheckProfileAccess(profile ipn.LoginProfileView, requestedAccess ProfileAccess) error
|
||||||
|
|
||||||
// IsLocalSystem reports whether the actor is the Windows' Local System account.
|
// IsLocalSystem reports whether the actor is the Windows' Local System account.
|
||||||
|
@ -33,6 +33,7 @@ const (
|
|||||||
//
|
//
|
||||||
// Warning: This policy setting is experimental and may change or be removed in the future.
|
// Warning: This policy setting is experimental and may change or be removed in the future.
|
||||||
// It may also not be fully supported by all Tailscale clients until it is out of experimental status.
|
// It may also not be fully supported by all Tailscale clients until it is out of experimental status.
|
||||||
|
// See tailscale/corp#26247, tailscale/corp#26248 and tailscale/corp#26249 for more information.
|
||||||
AlwaysOn Key = "AlwaysOn"
|
AlwaysOn Key = "AlwaysOn"
|
||||||
|
|
||||||
// ExitNodeID is the exit node's node id. default ""; if blank, no exit node is forced.
|
// ExitNodeID is the exit node's node id. default ""; if blank, no exit node is forced.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user