mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
transport: don't add connection to multiplexer if init fails (#3931)
* Remove conn from multiplexer when (*Transport).init fails * Transport: AddConn to multiplexer directly before start listening * Update transport_test.go --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
This commit is contained in:
parent
435444af7e
commit
0c54d416ee
2 changed files with 25 additions and 2 deletions
|
@ -6,6 +6,7 @@ import (
|
|||
"crypto/tls"
|
||||
"errors"
|
||||
"net"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
mocklogging "github.com/quic-go/quic-go/internal/mocks/logging"
|
||||
|
@ -307,4 +308,27 @@ var _ = Describe("Transport", func() {
|
|||
pconn.EXPECT().Close()
|
||||
Expect(tr.Close()).To(Succeed())
|
||||
})
|
||||
|
||||
It("doesn't add the PacketConn to the multiplexer if (*Transport).init fails", func() {
|
||||
packetChan := make(chan packetToRead)
|
||||
pconn := newMockPacketConn(packetChan)
|
||||
syscallconn := &mockSyscallConn{pconn}
|
||||
|
||||
tr := &Transport{
|
||||
Conn: syscallconn,
|
||||
}
|
||||
|
||||
err := tr.init(false)
|
||||
Expect(err).To(HaveOccurred())
|
||||
conns := getMultiplexer().(*connMultiplexer).conns
|
||||
Expect(len(conns)).To(BeZero())
|
||||
})
|
||||
})
|
||||
|
||||
type mockSyscallConn struct {
|
||||
net.PacketConn
|
||||
}
|
||||
|
||||
func (c *mockSyscallConn) SyscallConn() (syscall.RawConn, error) {
|
||||
return nil, errors.New("mocked")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue