mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
close the packet conn when a server created with ListenAddr is closed
This commit is contained in:
parent
ad5a3e2fa0
commit
b5d03d24a5
2 changed files with 35 additions and 3 deletions
|
@ -254,6 +254,21 @@ var _ = Describe("Server", func() {
|
|||
Eventually(done).Should(BeClosed())
|
||||
})
|
||||
|
||||
It("closes the connection when it was created with ListenAddr", func() {
|
||||
addr, err := net.ResolveUDPAddr("udp", "localhost:12345")
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
serv, err := ListenAddr("localhost:0", nil, nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
// test that we can write on the packet conn
|
||||
_, err = serv.(*server).conn.WriteTo([]byte("foobar"), addr)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(serv.Close()).To(Succeed())
|
||||
// test that we can't write any more on the packet conn
|
||||
_, err = serv.(*server).conn.WriteTo([]byte("foobar"), addr)
|
||||
Expect(err.Error()).To(ContainSubstring("use of closed network connection"))
|
||||
})
|
||||
|
||||
It("returns Accept when it is closed", func() {
|
||||
done := make(chan struct{})
|
||||
go func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue