aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/ws_dont_validate_utf8_h.erl
blob: 6599c78bd1f7f557b67c9ec790c326d80bd16659 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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}.