Chore: use correctly vmess http2 default host

This commit is contained in:
Dreamacro 2021-04-10 12:10:10 +08:00
parent 93a8acecce
commit 7b01e103c2

View File

@ -273,7 +273,7 @@ func NewVmess(option VmessOption) (*Vmess, error) {
switch option.Network {
case "h2":
if len(option.HTTP2Opts.Host) == 0 {
option.HTTP2Opts.Host = append(option.HTTP2Opts.Host, option.Server)
option.HTTP2Opts.Host = append(option.HTTP2Opts.Host, "www.example.com")
}
case "grpc":
dialFn := func(network, addr string) (net.Conn, error) {