mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
23 lines
498 B
Erlang
23 lines
498 B
Erlang
%% 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) ->
|
|
{[{text, Data}], State};
|
|
websocket_handle({binary, Data}, State) ->
|
|
{[{binary, Data}], State};
|
|
websocket_handle(_, State) ->
|
|
{[], State}.
|
|
|
|
websocket_info(_, State) ->
|
|
{[], State}.
|