rename the cryptoStreamI interface to cryptoStream

This commit is contained in:
Marten Seemann 2018-08-11 12:24:51 +07:00
parent 40050f558d
commit 04147d86da
9 changed files with 20 additions and 20 deletions

View file

@ -14,7 +14,7 @@ type windowUpdateQueue struct {
queue map[protocol.StreamID]bool // used as a set
queuedConn bool // connection-level window update
cryptoStream cryptoStreamI
cryptoStream cryptoStream
streamGetter streamGetter
connFlowController flowcontrol.ConnectionFlowController
callback func(wire.Frame)
@ -22,7 +22,7 @@ type windowUpdateQueue struct {
func newWindowUpdateQueue(
streamGetter streamGetter,
cryptoStream cryptoStreamI,
cryptoStream cryptoStream,
connFC flowcontrol.ConnectionFlowController,
cb func(wire.Frame),
) *windowUpdateQueue {