mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix: go 1.20 failing test
This commit is contained in:
parent
77691ccce8
commit
92311cd441
1 changed files with 3 additions and 2 deletions
|
@ -12,7 +12,7 @@ import (
|
|||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/refraction-networking/uquic"
|
||||
quic "github.com/refraction-networking/uquic"
|
||||
tls "github.com/refraction-networking/utls"
|
||||
|
||||
quicproxy "github.com/refraction-networking/uquic/integrationtests/tools/proxy"
|
||||
|
@ -562,7 +562,8 @@ var _ = Describe("0-RTT", func() {
|
|||
tlsConf, clientConf := dialAndReceiveSessionTicket(nil)
|
||||
|
||||
// now close the listener and dial new connection with a different ALPN
|
||||
clientConf.NextProtos = []string{"new-alpn"}
|
||||
// clientConf.NextProtos = []string{"new-alpn"}
|
||||
clientConf.NextProtos = append(clientConf.NextProtos, "new-alpn")
|
||||
tlsConf.NextProtos = []string{"new-alpn"}
|
||||
counter, tracer := newPacketTracer()
|
||||
ln, err := quic.ListenAddrEarly(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue