Add DERP inbound

This commit is contained in:
世界 2025-03-28 12:56:43 +08:00
parent 68df19ae13
commit 17962f5e65
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 555 additions and 19 deletions

View file

@ -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"`
}