mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-16 13:10:24 +00:00
Add 'Upgrade' header parsing
Not parsing product tokens, I don't see much point.
This commit is contained in:
parent
17c9d45786
commit
298ba1f1bb
2 changed files with 7 additions and 11 deletions
|
@ -72,16 +72,13 @@ upgrade(ListenerPid, Handler, Opts, Req) ->
|
|||
{'EXIT', _Reason} -> upgrade_error(Req)
|
||||
end.
|
||||
|
||||
%% @todo We need a function to properly parse headers according to their ABNF,
|
||||
%% instead of having ugly code like this case here.
|
||||
%% @todo Upgrade is a list of products and should be parsed as such.
|
||||
-spec websocket_upgrade(#state{}, #http_req{}) -> {ok, #state{}, #http_req{}}.
|
||||
websocket_upgrade(State, Req) ->
|
||||
{ConnTokens, Req2}
|
||||
= cowboy_http_req:parse_header('Connection', Req),
|
||||
true = lists:member(<<"upgrade">>, ConnTokens),
|
||||
{WS, Req3} = cowboy_http_req:header('Upgrade', Req2),
|
||||
<<"websocket">> = cowboy_bstr:to_lower(WS),
|
||||
%% @todo Should probably send a 426 if the Upgrade header is missing.
|
||||
{[<<"websocket">>], Req3} = cowboy_http_req:parse_header('Upgrade', Req2),
|
||||
{Version, Req4} = cowboy_http_req:header(<<"Sec-Websocket-Version">>, Req3),
|
||||
websocket_upgrade(Version, State, Req4).
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue