mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Add Websocket option validate_utf8
This allows disabling the UTF-8 validation check for text and close frames.
This commit is contained in:
parent
c50d6aa09c
commit
3e23aff1d1
4 changed files with 61 additions and 8 deletions
23
test/handlers/ws_dont_validate_utf8_h.erl
Normal file
23
test/handlers/ws_dont_validate_utf8_h.erl
Normal file
|
@ -0,0 +1,23 @@
|
|||
%% This module disables UTF-8 validation.
|
||||
|
||||
-module(ws_dont_validate_utf8_h).
|
||||
-behavior(cowboy_websocket).
|
||||
|
||||
-export([init/2]).
|
||||
-export([websocket_handle/2]).
|
||||
-export([websocket_info/2]).
|
||||
|
||||
init(Req, State) ->
|
||||
{cowboy_websocket, Req, State, #{
|
||||
validate_utf8 => false
|
||||
}}.
|
||||
|
||||
websocket_handle({text, Data}, State) ->
|
||||
{reply, {text, Data}, State};
|
||||
websocket_handle({binary, Data}, State) ->
|
||||
{reply, {binary, Data}, State};
|
||||
websocket_handle(_, State) ->
|
||||
{ok, State}.
|
||||
|
||||
websocket_info(_, State) ->
|
||||
{ok, State}.
|
Loading…
Add table
Add a link
Reference in a new issue