mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unused unknownPacketHandler interface (#4093)
This commit is contained in:
parent
22fb59ee6f
commit
9010cfd2bb
4 changed files with 3 additions and 70 deletions
|
@ -16,6 +16,8 @@ import (
|
|||
"github.com/quic-go/quic-go/logging"
|
||||
)
|
||||
|
||||
var errListenerAlreadySet = errors.New("listener already set")
|
||||
|
||||
// The Transport is the central point to manage incoming and outgoing QUIC connections.
|
||||
// QUIC demultiplexes connections based on their QUIC Connection IDs, not based on the 4-tuple.
|
||||
// This means that a single UDP socket can be used for listening for incoming connections, as well as
|
||||
|
@ -91,7 +93,7 @@ type Transport struct {
|
|||
// If no ConnectionIDGenerator is set, this is set to a default.
|
||||
connIDGenerator ConnectionIDGenerator
|
||||
|
||||
server unknownPacketHandler
|
||||
server *baseServer
|
||||
|
||||
conn rawConn
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue