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

@ -9,7 +9,7 @@ import (
type streamFramer struct {
streamGetter streamGetter
cryptoStream cryptoStreamI
cryptoStream cryptoStream
version protocol.VersionNumber
streamQueueMutex sync.Mutex
@ -19,7 +19,7 @@ type streamFramer struct {
}
func newStreamFramer(
cryptoStream cryptoStreamI,
cryptoStream cryptoStream,
streamGetter streamGetter,
v protocol.VersionNumber,
) *streamFramer {