Add shadowtls v2 support

This commit is contained in:
世界 2022-10-06 22:47:11 +08:00
parent d135d0f287
commit b0ad9bb6f1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 473 additions and 116 deletions

View file

@ -2,6 +2,8 @@ package option
type ShadowTLSInboundOptions struct {
ListenOptions
Version int `json:"version,omitempty"`
Password string `json:"password,omitempty"`
Handshake ShadowTLSHandshakeOptions `json:"handshake"`
}
@ -13,5 +15,7 @@ type ShadowTLSHandshakeOptions struct {
type ShadowTLSOutboundOptions struct {
DialerOptions
ServerOptions
TLS *OutboundTLSOptions `json:"tls,omitempty"`
Version int `json:"version,omitempty"`
Password string `json:"password,omitempty"`
TLS *OutboundTLSOptions `json:"tls,omitempty"`
}