rename the connection to rawConn

This commit is contained in:
Marten Seemann 2022-03-27 10:13:02 +01:00
parent 3126062aa7
commit d7ad1b6b9b
7 changed files with 20 additions and 20 deletions

View file

@ -7,6 +7,7 @@ import (
"errors"
"fmt"
"hash"
"io"
"log"
"net"
"os"
@ -48,6 +49,14 @@ func (h *zeroRTTQueue) Clear() {
}
}
// rawConn is a connection that allow reading of a receivedPacket.
type rawConn interface {
ReadPacket() (*receivedPacket, error)
WritePacket(b []byte, addr net.Addr, oob []byte) (int, error)
LocalAddr() net.Addr
io.Closer
}
type packetHandlerMapEntry struct {
packetHandler packetHandler
is0RTTQueue bool
@ -60,7 +69,7 @@ type packetHandlerMapEntry struct {
type packetHandlerMap struct {
mutex sync.Mutex
conn connection
conn rawConn
connIDLen int
handlers map[string] /* string(ConnectionID)*/ packetHandlerMapEntry