Fix: snell should support the config without obfs
This commit is contained in:
parent
1e9d9e6d03
commit
6f9de2d96f
2 changed files with 5 additions and 2 deletions
|
@ -40,7 +40,7 @@ type ShadowSocksOption struct {
|
|||
}
|
||||
|
||||
type simpleObfsOption struct {
|
||||
Mode string `obfs:"mode"`
|
||||
Mode string `obfs:"mode,omitempty"`
|
||||
Host string `obfs:"host,omitempty"`
|
||||
}
|
||||
|
||||
|
|
|
@ -87,7 +87,10 @@ func NewSnell(option SnellOption) (*Snell, error) {
|
|||
return nil, fmt.Errorf("snell %s initialize obfs error: %w", addr, err)
|
||||
}
|
||||
|
||||
if obfsOption.Mode != "tls" && obfsOption.Mode != "http" {
|
||||
switch obfsOption.Mode {
|
||||
case "tls", "http", "":
|
||||
break
|
||||
default:
|
||||
return nil, fmt.Errorf("snell %s obfs mode error: %s", addr, obfsOption.Mode)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue