pass the version to the receiveStream constructor

This commit is contained in:
Marten Seemann 2018-02-02 14:55:22 +08:00
parent d0a394430f
commit 5d45bb046b
3 changed files with 9 additions and 3 deletions

View file

@ -125,7 +125,7 @@ func newStream(streamID protocol.StreamID,
s.completedMutex.Unlock()
},
}
s.receiveStream = *newReceiveStream(streamID, senderForReceiveStream, flowController)
s.receiveStream = *newReceiveStream(streamID, senderForReceiveStream, flowController, version)
return s
}