mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix HTTP/3 connection test on draft-29 (#3819)
This commit is contained in:
parent
b425465bf9
commit
e9fea08613
1 changed files with 5 additions and 4 deletions
|
@ -375,11 +375,12 @@ var _ = Describe("HTTP tests", func() {
|
|||
})
|
||||
|
||||
It("serves other QUIC connections", func() {
|
||||
if version == protocol.VersionDraft29 {
|
||||
Skip("This test only works on RFC versions")
|
||||
}
|
||||
tlsConf := getTLSConfig()
|
||||
tlsConf.NextProtos = []string{"h3"}
|
||||
if version == protocol.VersionDraft29 {
|
||||
tlsConf.NextProtos = []string{http3.NextProtoH3Draft29}
|
||||
} else {
|
||||
tlsConf.NextProtos = []string{http3.NextProtoH3}
|
||||
}
|
||||
ln, err := quic.ListenAddr("localhost:0", tlsConf, nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
defer ln.Close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue