mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Add DERP inbound
This commit is contained in:
parent
68df19ae13
commit
17962f5e65
10 changed files with 555 additions and 19 deletions
|
@ -2,6 +2,8 @@ package option
|
|||
|
||||
import (
|
||||
"net/netip"
|
||||
|
||||
"github.com/sagernet/sing/common/json/badoption"
|
||||
)
|
||||
|
||||
type TailscaleEndpointOptions struct {
|
||||
|
@ -22,3 +24,22 @@ type TailscaleDNSServerOptions struct {
|
|||
Endpoint string `json:"endpoint,omitempty"`
|
||||
AcceptDefaultResolvers bool `json:"accept_default_resolvers,omitempty"`
|
||||
}
|
||||
|
||||
type DERPInboundOptions struct {
|
||||
ListenOptions
|
||||
STUNPort uint16 `json:"stun_port,omitempty"`
|
||||
InboundTLSOptionsContainer
|
||||
ConfigPath string `json:"config_path,omitempty"`
|
||||
VerifyClientEndpoint badoption.Listable[string] `json:"verify_client_endpoint,omitempty"`
|
||||
VerifyClientURL badoption.Listable[string] `json:"verify_client_url,omitempty"`
|
||||
MeshWith []DERPMeshOptions `json:"mesh_with,omitempty"`
|
||||
MeshPSK string `json:"mesh_psk,omitempty"`
|
||||
MeshPSKFile string `json:"mesh_psk_file,omitempty"`
|
||||
DialerOptions
|
||||
}
|
||||
|
||||
type DERPMeshOptions struct {
|
||||
ServerOptions
|
||||
OutboundTLSOptionsContainer
|
||||
Hostname string `json:"hostname,omitempty"`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue