Fix missing default next proto in hysteria2

This commit is contained in:
世界 2023-11-05 23:07:04 +08:00
parent fa3d997246
commit 5340eace92
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 7 additions and 0 deletions

View file

@ -13,6 +13,7 @@ import (
"github.com/sagernet/quic-go"
"github.com/sagernet/quic-go/congestion"
"github.com/sagernet/quic-go/http3"
"github.com/sagernet/sing-quic"
congestion_meta1 "github.com/sagernet/sing-quic/congestion_meta1"
congestion_meta2 "github.com/sagernet/sing-quic/congestion_meta2"
@ -72,6 +73,9 @@ func NewClient(options ClientOptions) (*Client, error) {
MaxIdleTimeout: hysteria.DefaultMaxIdleTimeout,
KeepAlivePeriod: hysteria.DefaultKeepAlivePeriod,
}
if len(options.TLSConfig.NextProtos()) == 0 {
options.TLSConfig.SetNextProtos([]string{http3.NextProtoH3})
}
return &Client{
ctx: options.Context,
dialer: options.Dialer,

View file

@ -82,6 +82,9 @@ func NewService[U comparable](options ServiceOptions) (*Service[U], error) {
if options.MasqueradeHandler == nil {
options.MasqueradeHandler = http.NotFoundHandler()
}
if len(options.TLSConfig.NextProtos()) == 0 {
options.TLSConfig.SetNextProtos([]string{http3.NextProtoH3})
}
return &Service[U]{
ctx: options.Context,
logger: options.Logger,