pulled default NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS to 1073741824

This commit is contained in:
Prune Sebastien THOMAS 2018-07-12 15:42:49 -04:00 committed by GitHub
parent e5b3f9addd
commit 0294f02f25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ int http2_handler::start() {
return -1;
}
nghttp2_settings_entry ent{NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 100};
nghttp2_settings_entry ent{NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 1073741824};
nghttp2_submit_settings(session_, NGHTTP2_FLAG_NONE, &ent, 1);
return 0;