mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
rename the cryptoStreamI interface to cryptoStream
This commit is contained in:
parent
40050f558d
commit
04147d86da
9 changed files with 20 additions and 20 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue