mirror of
https://github.com/processone/ejabberd
synced 2025-10-04 02:09:33 +02:00
ejabberd_websocket: Ignore case of header values
RFC 6455 says that the client's opening handshake includes an Upgrade header field "containing the value 'websocket', treated as an ASCII case-insensitive value." Closes #510.
This commit is contained in:
parent
7d3b2cad26
commit
0cd77ab942
1 changed files with 3 additions and 2 deletions
|
@ -73,9 +73,10 @@ check(_Path, Headers) ->
|
||||||
{_, HVal} ->
|
{_, HVal} ->
|
||||||
case Val of
|
case Val of
|
||||||
ignore -> false; % ignore value -> ok, remove from list
|
ignore -> false; % ignore value -> ok, remove from list
|
||||||
HVal -> false; % expected val -> ok, remove from list
|
|
||||||
_ ->
|
_ ->
|
||||||
true % val is different, keep in list
|
% expected value -> ok, remove from list (false)
|
||||||
|
% value is different, keep in list (true)
|
||||||
|
str:to_lower(HVal) /= Val
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue