You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
%% Upon learning that the session has been terminated, the endpoint MUST reset the send side and abort reading on the receive side of all of the streams associated with the session (see Section 2.4 of [RFC9000]) using the WEBTRANSPORT_SESSION_GONE error code; it MUST NOT send any new datagrams or open any new streams. (6)
407
453
454
+
%% @todo wt_session_gone_client/server
455
+
408
456
%% To terminate a session with a detailed error message, an application MAY send an HTTP capsule [HTTP-DATAGRAM] of type CLOSE_WEBTRANSPORT_SESSION (0x2843). (6)
457
+
%% @todo close_wt_session_client/server
409
458
410
459
%% Application Error Message: A UTF-8 encoded error message string provided by the application closing the session. The message takes up the remainder of the capsule, and its length MUST NOT exceed 1024 bytes. (6)
411
460
461
+
%% @todo close_wt_session_app_code_msg_client
462
+
463
+
%% @todo
464
+
%close_wt_session_app_code_server(Config) ->
465
+
% error(todo).
466
+
%close_wt_session_app_code_msg_server(Config) ->
467
+
% error(todo).
468
+
412
469
%% An endpoint that sends a CLOSE_WEBTRANSPORT_SESSION capsule MUST immediately send a FIN. The endpoint MAY send a STOP_SENDING to indicate it is no longer reading from the CONNECT stream. The recipient MUST either close or reset the stream in response. (6)
470
+
%% @todo close_wt_session_server_fin
471
+
%% @todo The part about close/reset should be tested in close_wt_session_client.
413
472
414
473
%% If any additional stream data is received on the CONNECT stream after receiving a CLOSE_WEBTRANSPORT_SESSION capsule, the stream MUST be reset with code H3_MESSAGE_ERROR. (6)
474
+
%% @todo close_wt_session_followed_by_data
415
475
416
476
%% Cleanly terminating a CONNECT stream without a CLOSE_WEBTRANSPORT_SESSION capsule SHALL be semantically equivalent to terminating it with a CLOSE_WEBTRANSPORT_SESSION capsule that has an error code of 0 and an empty error string. (6)
0 commit comments