aboutsummaryrefslogtreecommitdiffstats
path: root/src/gun_http2.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/gun_http2.erl')
-rw-r--r--src/gun_http2.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gun_http2.erl b/src/gun_http2.erl
index edbc7c0..6176fe3 100644
--- a/src/gun_http2.erl
+++ b/src/gun_http2.erl
@@ -188,11 +188,11 @@ frame({headers, StreamID, IsFin, head_fin, HeaderBlock},
%% @todo HEADERS frame starting a headers block. Enter continuation mode.
%frame(State, {headers, StreamID, IsFin, head_nofin, HeaderBlockFragment}) ->
% State#http2_state{parse_state={continuation, StreamID, IsFin, HeaderBlockFragment}};
-%% @todo Single HEADERS frame headers block with priority.
-%frame(State, {headers, StreamID, IsFin, head_fin,
-% _IsExclusive, _DepStreamID, _Weight, HeaderBlock}) ->
-% %% @todo Handle priority.
-% stream_init(State, StreamID, IsFin, HeaderBlock);
+%% Single HEADERS frame headers block with priority.
+frame({headers, StreamID, IsFin, head_fin,
+ _IsExclusive, _DepStreamID, _Weight, HeaderBlock}, State) ->
+ %% @todo Handle priority.
+ frame({headers, StreamID, IsFin, head_fin, HeaderBlock}, State);
%% @todo HEADERS frame starting a headers block. Enter continuation mode.
%frame(State, {headers, StreamID, IsFin, head_nofin,
% _IsExclusive, _DepStreamID, _Weight, HeaderBlockFragment}) ->