mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-05 04:47:40 +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"
|
||||||
"github.com/sagernet/quic-go/congestion"
|
"github.com/sagernet/quic-go/congestion"
|
||||||
|
"github.com/sagernet/quic-go/http3"
|
||||||
"github.com/sagernet/sing-quic"
|
"github.com/sagernet/sing-quic"
|
||||||
congestion_meta1 "github.com/sagernet/sing-quic/congestion_meta1"
|
congestion_meta1 "github.com/sagernet/sing-quic/congestion_meta1"
|
||||||
congestion_meta2 "github.com/sagernet/sing-quic/congestion_meta2"
|
congestion_meta2 "github.com/sagernet/sing-quic/congestion_meta2"
|
||||||
|
@ -72,6 +73,9 @@ func NewClient(options ClientOptions) (*Client, error) {
|
||||||
MaxIdleTimeout: hysteria.DefaultMaxIdleTimeout,
|
MaxIdleTimeout: hysteria.DefaultMaxIdleTimeout,
|
||||||
KeepAlivePeriod: hysteria.DefaultKeepAlivePeriod,
|
KeepAlivePeriod: hysteria.DefaultKeepAlivePeriod,
|
||||||
}
|
}
|
||||||
|
if len(options.TLSConfig.NextProtos()) == 0 {
|
||||||
|
options.TLSConfig.SetNextProtos([]string{http3.NextProtoH3})
|
||||||
|
}
|
||||||
return &Client{
|
return &Client{
|
||||||
ctx: options.Context,
|
ctx: options.Context,
|
||||||
dialer: options.Dialer,
|
dialer: options.Dialer,
|
||||||
|
|
|
@ -82,6 +82,9 @@ func NewService[U comparable](options ServiceOptions) (*Service[U], error) {
|
||||||
if options.MasqueradeHandler == nil {
|
if options.MasqueradeHandler == nil {
|
||||||
options.MasqueradeHandler = http.NotFoundHandler()
|
options.MasqueradeHandler = http.NotFoundHandler()
|
||||||
}
|
}
|
||||||
|
if len(options.TLSConfig.NextProtos()) == 0 {
|
||||||
|
options.TLSConfig.SetNextProtos([]string{http3.NextProtoH3})
|
||||||
|
}
|
||||||
return &Service[U]{
|
return &Service[U]{
|
||||||
ctx: options.Context,
|
ctx: options.Context,
|
||||||
logger: options.Logger,
|
logger: options.Logger,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue