diff --git a/main/lib/http2/node/client.js b/main/lib/http2/node/client.js index a6ff9f3f..f7feb9b6 100644 --- a/main/lib/http2/node/client.js +++ b/main/lib/http2/node/client.js @@ -87,7 +87,6 @@ export class Http2WebTransportClient { settings: { enableConnectProtocol: true, customSettings: { - 0x2b60: 1, // SETTINGS_WT_MAX_SESSIONS, TODO fix number 0x2b61: this.initialSessionFlowControlWindow, // SETTINGS_WT_INITIAL_MAX_DATA 0x2b62: this.initialStreamFlowControlWindow, // SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI 0x2b63: this.initialStreamFlowControlWindow, // SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI @@ -95,7 +94,7 @@ export class Http2WebTransportClient { 0x2b65: this.initialBidirectionalStreams // SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI } }, - remoteCustomSettings: [0x2b60, 0x2b61, 0x2b62, 0x2b63, 0x2b64, 0x2b65], + remoteCustomSettings: [0x2b61, 0x2b62, 0x2b63, 0x2b64, 0x2b65], localPort: this.localPort, // TODO: REMOVE BEFORE RELEASE; UNSAFE SETTING rejectUnauthorized: !this.serverCertificateHashes diff --git a/main/lib/http2/node/server.js b/main/lib/http2/node/server.js index 1f0f5367..28eedd87 100644 --- a/main/lib/http2/node/server.js +++ b/main/lib/http2/node/server.js @@ -59,7 +59,6 @@ export class Http2WebTransportServer { settings: { enableConnectProtocol: true, customSettings: { - 0x2b60: 1, // SETTINGS_WT_MAX_SESSIONS, TODO fix number 0x2b61: this.initialSessionFlowControlWindow, // SETTINGS_WT_INITIAL_MAX_DATA 0x2b62: this.initialStreamFlowControlWindow, // SETTINGS_WT_INITIAL_MAX_STREAM_DATA_UNI 0x2b63: this.initialStreamFlowControlWindow, // SETTINGS_WT_INITIAL_MAX_STREAM_DATA_BIDI @@ -67,7 +66,7 @@ export class Http2WebTransportServer { 0x2b65: this.initialBidirectionalStreams // SETTINGS_WT_INITIAL_MAX_STREAMS_BIDI } }, - remoteCustomSettings: [0x2b60, 0x2b61, 0x2b62, 0x2b63, 0x2b64, 0x2b65] + remoteCustomSettings: [0x2b61, 0x2b62, 0x2b63, 0x2b64, 0x2b65] }) this.serverInt.on('listening', () => { diff --git a/main/package.json b/main/package.json index 1134f2aa..4100c1e8 100644 --- a/main/package.json +++ b/main/package.json @@ -1,6 +1,6 @@ { "name": "@fails-components/webtransport", - "version": "1.5.2", + "version": "1.5.3", "description": "A component to add webtransport support (server and client) to node.js using libquiche", "exports": { ".": { diff --git a/package-lock.json b/package-lock.json index ac246fc7..e34d011f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fails-components/webtransport-workspace", - "version": "1.5.2", + "version": "1.5.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@fails-components/webtransport-workspace", - "version": "1.5.2", + "version": "1.5.3", "license": "BSD-3-Clause", "workspaces": [ "transports/*", @@ -16,7 +16,7 @@ }, "main": { "name": "@fails-components/webtransport", - "version": "1.5.2", + "version": "1.5.3", "license": "BSD-3-Clause", "dependencies": { "@types/debug": "^4.1.7", @@ -8462,7 +8462,7 @@ }, "test": { "name": "@fails-components/webtransport-tests", - "version": "1.5.2", + "version": "1.5.3", "license": "BSD-3-Clause", "dependencies": { "@fails-components/webtransport": "^1.1.3", @@ -8517,7 +8517,7 @@ }, "transports/http3-quiche": { "name": "@fails-components/webtransport-transport-http3-quiche", - "version": "1.5.2", + "version": "1.5.3", "hasInstallScript": true, "license": "BSD-3-Clause", "dependencies": { diff --git a/package.json b/package.json index 6179c222..9ae092fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fails-components/webtransport-workspace", - "version": "1.5.2", + "version": "1.5.3", "description": "A component to add webtransport support (server and client) to node.js using libquiche", "repository": { "type": "git", diff --git a/test/package.json b/test/package.json index 83752631..3767722a 100644 --- a/test/package.json +++ b/test/package.json @@ -1,6 +1,6 @@ { "name": "@fails-components/webtransport-tests", - "version": "1.5.2", + "version": "1.5.3", "description": "An automated test for the webtransport component", "exports": { ".": { diff --git a/transports/http3-quiche/package.json b/transports/http3-quiche/package.json index 972a991e..c1db0dcf 100644 --- a/transports/http3-quiche/package.json +++ b/transports/http3-quiche/package.json @@ -1,6 +1,6 @@ { "name": "@fails-components/webtransport-transport-http3-quiche", - "version": "1.5.2", + "version": "1.5.3", "description": "A component to add webtransport support (server and client) to node.js, transport using libquiche", "exports": { ".": {