mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
reject a tls.Config without NextProtos for listening
This commit is contained in:
parent
979ab75b3b
commit
8eeddeb9c0
2 changed files with 11 additions and 0 deletions
|
@ -42,6 +42,7 @@ var _ = Describe("Server", func() {
|
|||
conn = newMockPacketConn()
|
||||
conn.addr = &net.UDPAddr{}
|
||||
tlsConf = testdata.GetTLSConfig()
|
||||
tlsConf.NextProtos = []string{"proto1"}
|
||||
})
|
||||
|
||||
It("errors when no tls.Config is given", func() {
|
||||
|
@ -56,6 +57,13 @@ var _ = Describe("Server", func() {
|
|||
Expect(err.Error()).To(ContainSubstring("quic: Certificates not set in tls.Config"))
|
||||
})
|
||||
|
||||
It("errors when NextProtos is not set in the tls.Config", func() {
|
||||
tlsConf.NextProtos = nil
|
||||
_, err := ListenAddr("localhost:0", tlsConf, nil)
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("quic: NextProtos not set in tls.Config"))
|
||||
})
|
||||
|
||||
It("errors when the Config contains an invalid version", func() {
|
||||
version := protocol.VersionNumber(0x1234)
|
||||
_, err := Listen(nil, tlsConf, &Config{Versions: []protocol.VersionNumber{version}})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue