mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-03 03:47:39 +03:00
Fix missing default next proto in hysteria2
This commit is contained in:
parent
fa3d997246
commit
5340eace92
2 changed files with 7 additions and 0 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue