mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename the connection to rawConn
This commit is contained in:
parent
3126062aa7
commit
d7ad1b6b9b
7 changed files with 20 additions and 20 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue