Commit ea5a1b60 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Change NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS

The previous value 100 is non-standard, and if it is not sent with
SETTINGS, session will be closed with protocol error.
parent 737ac01d
...@@ -359,7 +359,7 @@ typedef enum { ...@@ -359,7 +359,7 @@ typedef enum {
* @macro * @macro
* Default maximum concurrent streams. * Default maximum concurrent streams.
*/ */
#define NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS 100 #define NGHTTP2_INITIAL_MAX_CONCURRENT_STREAMS ((1U << 31) - 1)
/** /**
* @enum * @enum
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment