rename the sessionRunner to connRunner

This commit is contained in:
Marten Seemann 2022-03-26 15:31:31 +01:00
parent 97690dc493
commit 86338d3ce0
7 changed files with 99 additions and 99 deletions

View file

@ -36,7 +36,7 @@ type unknownPacketHandler interface {
type packetHandlerManager interface {
AddWithConnID(protocol.ConnectionID, protocol.ConnectionID, func() packetHandler) bool
Destroy() error
sessionRunner
connRunner
SetServer(unknownPacketHandler)
CloseServer()
}
@ -75,7 +75,7 @@ type baseServer struct {
// set as a member, so they can be set in the tests
newSession func(
sendConn,
sessionRunner,
connRunner,
protocol.ConnectionID, /* original dest connection ID */
*protocol.ConnectionID, /* retry src connection ID */
protocol.ConnectionID, /* client dest connection ID */