1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-23 22:14:41 -05:00
sub2sing-box/model/shadowtls.go
nite07 1a7944f7a1 重构部分代码
fix: vless ws 配置缺少 path 字段
2024-04-17 22:51:29 +08:00

20 lines
394 B
Go

package model
type ShadowTLSUser struct {
Name string `json:"name,omitempty"`
Password string `json:"password,omitempty"`
}
type ShadowTLSHandshakeOptions struct {
ServerOptions
DialerOptions
}
type ShadowTLSOutboundOptions struct {
DialerOptions
ServerOptions
Version int `json:"version,omitempty"`
Password string `json:"password,omitempty"`
OutboundTLSOptionsContainer
}