mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use a mock net.PacketConn in tests
This commit is contained in:
parent
ebe051b2cc
commit
a65274942c
9 changed files with 577 additions and 442 deletions
|
@ -64,7 +64,8 @@ func (m *connMultiplexer) AddConn(
|
|||
m.mutex.Lock()
|
||||
defer m.mutex.Unlock()
|
||||
|
||||
connIndex := c.LocalAddr().Network() + " " + c.LocalAddr().String()
|
||||
addr := c.LocalAddr()
|
||||
connIndex := addr.Network() + " " + addr.String()
|
||||
p, ok := m.conns[connIndex]
|
||||
if !ok {
|
||||
manager, err := m.newPacketHandlerManager(c, connIDLen, statelessResetKey, tracer, m.logger)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue