|
@@ -12,7 +12,7 @@
|
|
|
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
--module(draft_h2_websockets_SUITE).
|
|
|
+-module(rfc8441_SUITE).
|
|
|
-compile(export_all).
|
|
|
-compile(nowarn_export_all).
|
|
|
|
|
@@ -404,6 +404,12 @@ accept_handshake_when_enabled(Config) ->
|
|
|
|
|
|
%% Closing a Websocket stream.
|
|
|
|
|
|
+% The HTTP/2 stream closure is also analagous to the TCP connection closure of
|
|
|
+% [RFC6455]. Orderly TCP level closures are represented as END_STREAM
|
|
|
+% ([RFC7540] Section 6.1) flags and RST exceptions are represented with
|
|
|
+% the RST_STREAM ([RFC7540] Section 6.4) frame with the CANCEL
|
|
|
+% ([RFC7540] Secion 7) error code.
|
|
|
+
|
|
|
%% @todo client close frame with END_STREAM
|
|
|
%% @todo server close frame with END_STREAM
|
|
|
%% @todo client other frame with END_STREAM
|