The http2.getDefaultSettings(), http2.getPackedSettings(),
http2.createServer(), http2.createSecureServer(),
http2session.settings(), http2session.localSettings, and
http2session.remoteSettings APIs either return or receive as input an
object that defines configuration settings for an Http2Session object.
These objects are ordinary JavaScript objects containing the following
properties.
headerTableSize{number} Specifies the maximum number of bytes used for header compression. The minimum allowed value is 0. The maximum allowed value is 232-1. Default:4096.enablePush{boolean} Specifiestrueif HTTP/2 Push Streams are to be permitted on theHttp2Sessioninstances. Default:true.initialWindowSize{number} Specifies the sender’s initial window size in bytes for stream-level flow control. The minimum allowed value is 0. The maximum allowed value is 232-1. Default:65535.maxFrameSize{number} Specifies the size in bytes of the largest frame payload. The minimum allowed value is 16,384. The maximum allowed value is 224-1. Default:16384.maxConcurrentStreams{number} Specifies the maximum number of concurrent streams permitted on anHttp2Session. There is no default value which implies, at least theoretically, 232-1 streams may be open concurrently at any given time in anHttp2Session. The minimum value is 0. The maximum allowed value is 232-1. Default:4294967295.maxHeaderListSize{number} Specifies the maximum size (uncompressed octets) of header list that will be accepted. The minimum allowed value is 0. The maximum allowed value is 232-1. Default:65535.maxHeaderSize{number} Alias formaxHeaderListSize.enableConnectProtocol{boolean} Specifiestrueif the “Extended Connect Protocol” defined by [RFC 8441][] is to be enabled. This setting is only meaningful if sent by the server. Once theenableConnectProtocolsetting has been enabled for a givenHttp2Session, it cannot be disabled. Default:false.
All additional properties on the settings object are ignored.
