remove unused unknownPacketHandler interface (#4093)

This commit is contained in:
Marten Seemann 2023-09-17 19:20:13 +07:00 committed by GitHub
parent 22fb59ee6f
commit 9010cfd2bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 70 deletions

View file

@ -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