Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[webtranport] Update streamErrorCode to 32-bit long #41085

Merged
merged 1 commit into from
Jul 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions webtransport/streams-close.https.any.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ promise_test(async t => {
}, 'Abort unidirectional stream with default error code');

promise_test(async t => {
const WT_CODE = 240;
const WT_CODE = 0;
const HTTP_CODE = webtransport_code_to_http_code(WT_CODE);
const wt = new WebTransport(
webtransport_url(`abort-stream-from-server.py?code=${HTTP_CODE}`));
Expand All @@ -229,7 +229,7 @@ promise_test(async t => {
}, 'STOP_SENDING coming from server');

promise_test(async t => {
const WT_CODE = 127;
const WT_CODE = 0xffffffff;
const HTTP_CODE = webtransport_code_to_http_code(WT_CODE);
const wt = new WebTransport(
webtransport_url(`abort-stream-from-server.py?code=${HTTP_CODE}`));
Expand Down