Skip to content

Commit

Permalink
Change default stream limit
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Jul 10, 2020
1 parent 4cc8b27 commit ba5d824
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Connection/Internal/Http2ConnectionProcessor.php
Expand Up @@ -81,10 +81,10 @@ final class Http2ConnectionProcessor implements Http2Processor
private $streamId = -1;

/** @var int Maximum number of streams that may be opened. Initially unlimited. */
private $concurrentStreamLimit = \PHP_INT_MAX;
private $concurrentStreamLimit = 2147483647;

/** @var int Currently open or reserved streams. Initially unlimited. */
private $remainingStreams = \PHP_INT_MAX;
private $remainingStreams = 2147483647;

/** @var HPack */
private $hpack;
Expand Down

0 comments on commit ba5d824

Please sign in to comment.