1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-23 22:04:41 -05:00

fix reality parsing

This commit is contained in:
Zongxin Gan 2024-02-19 00:31:56 +08:00
parent fd8164b08e
commit b053281790
2 changed files with 13 additions and 13 deletions

View File

@ -16,8 +16,8 @@ type GrpcOptions struct {
}
type RealityOptions struct {
PublicKey string `proxy:"public-key"`
ShortID string `proxy:"short-id"`
PublicKey string `yaml:"public-key"`
ShortID string `yaml:"short-id,omitempty"`
}
type WSOptions struct {

View File

@ -43,9 +43,9 @@ func ParseVless(proxy string) (model.Proxy, error) {
UDP: true,
Sni: params.Get("sni"),
Network: params.Get("type"),
TLS: params.Get("security") == "tls",
TLS: params.Get("security") == "reality",
Flow: params.Get("flow"),
Fingerprint: params.Get("fp"),
ClientFingerprint: params.Get("fp"),
Servername: params.Get("sni"),
RealityOpts: model.RealityOptions{
PublicKey: params.Get("pbk"),