mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
use a uint64 for stream counts
This commit is contained in:
parent
e8de94485c
commit
0f931ca54e
7 changed files with 34 additions and 17 deletions
|
@ -27,7 +27,7 @@ func (s *mockGenericStream) closeForShutdown(err error) {
|
|||
var _ = Describe("Streams Map (incoming)", func() {
|
||||
const (
|
||||
firstNewStream protocol.StreamID = 20
|
||||
maxNumStreams int = 10
|
||||
maxNumStreams uint64 = 10
|
||||
initialMaxStream protocol.StreamID = firstNewStream + 4*protocol.StreamID(maxNumStreams-1)
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue