http2-wrapper
Advanced tools
Comparing version 2.0.3 to 2.0.4
{ | ||
"name": "http2-wrapper", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "HTTP2 client, just with the familiar `https` API", | ||
@@ -5,0 +5,0 @@ "main": "source", |
@@ -179,3 +179,4 @@ 'use strict'; | ||
this.settings = { | ||
enablePush: false | ||
enablePush: false, | ||
initialWindowSize: 1024 * 1024 * 32 // 32MB, see https://github.com/nodejs/node/issues/38426 | ||
}; | ||
@@ -534,2 +535,5 @@ | ||
// See https://github.com/nodejs/node/issues/38426 | ||
session.setLocalWindowSize(1024 * 1024 * 4); // 4 MB | ||
session[kOriginSet] = session.originSet || []; | ||
@@ -536,0 +540,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69515
1814