mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
replace all connection IDs at the same time when connection is closed
This commit is contained in:
parent
635dc90475
commit
c3ab9c4ea9
7 changed files with 34 additions and 25 deletions
|
@ -40,7 +40,11 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
connIDToToken,
|
||||
func(c protocol.ConnectionID) { removedConnIDs = append(removedConnIDs, c) },
|
||||
func(c protocol.ConnectionID) { retiredConnIDs = append(retiredConnIDs, c) },
|
||||
func(c protocol.ConnectionID, h packetHandler) { replacedWithClosed[string(c)] = h },
|
||||
func(cs []protocol.ConnectionID, h packetHandler) {
|
||||
for _, c := range cs {
|
||||
replacedWithClosed[string(c)] = h
|
||||
}
|
||||
},
|
||||
func(f wire.Frame) { queuedFrames = append(queuedFrames, f) },
|
||||
protocol.VersionDraft29,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue