mirror of
https://github.com/SagerNet/sing-quic.git
synced 2025-04-04 12:27:38 +03:00
Fix ALPN settings
This commit is contained in:
parent
eb3cbf9ed0
commit
8bd6f403d0
1 changed files with 3 additions and 2 deletions
5
quic.go
5
quic.go
|
@ -8,6 +8,7 @@ import (
|
|||
|
||||
"github.com/sagernet/quic-go"
|
||||
"github.com/sagernet/quic-go/http3"
|
||||
"github.com/sagernet/sing/common"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
aTLS "github.com/sagernet/sing/common/tls"
|
||||
)
|
||||
|
@ -104,8 +105,8 @@ func ListenEarly(conn net.PacketConn, config aTLS.ServerConfig, quicConfig *quic
|
|||
}
|
||||
|
||||
func ConfigureHTTP3(config aTLS.ServerConfig) error {
|
||||
if len(config.NextProtos()) == 0 {
|
||||
config.SetNextProtos([]string{http3.NextProtoH3})
|
||||
if !common.Contains(config.NextProtos(), http3.NextProtoH3) {
|
||||
config.SetNextProtos(append([]string{http3.NextProtoH3}, config.NextProtos()...))
|
||||
}
|
||||
if quicTLSConfig, isQUICConfig := config.(ServerConfig); isQUICConfig {
|
||||
quicTLSConfig.ConfigureHTTP3()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue