Merge pull request #97 from v14d4n/feat/masque-configurable-sni

Make masque TLS SNI configurable via server_name
This commit is contained in:
Shtorm
2026-06-26 14:39:20 +03:00
committed by GitHub
3 changed files with 7 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ type MASQUEOutboundOptions struct {
}
type MASQUEOutboundTLSOptions struct {
ServerName string `json:"server_name,omitempty"`
Insecure bool `json:"insecure,omitempty"`
CipherSuites badoption.Listable[string] `json:"cipher_suites,omitempty"`
CurvePreferences badoption.Listable[CurvePreference] `json:"curve_preferences,omitempty"`