mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-26 02:21:28 +00:00
12 lines
497 B
Go
12 lines
497 B
Go
|
package option
|
||
|
|
||
|
type TailscaleEndpointOptions struct {
|
||
|
StateDirectory string `json:"state_directory,omitempty"`
|
||
|
AuthKey string `json:"auth_key,omitempty"`
|
||
|
ControlURL string `json:"control_url,omitempty"`
|
||
|
Ephemeral bool `json:"ephemeral,omitempty"`
|
||
|
Hostname string `json:"hostname,omitempty"`
|
||
|
Tailssh bool `json:"tailssh,omitempty"`
|
||
|
UDPTimeout UDPTimeoutCompat `json:"udp_timeout,omitempty"`
|
||
|
}
|