aboutsummaryrefslogtreecommitdiffstats
path: root/test/ws_upgrade_with_opts_handler.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-12-03 14:13:46 +0100
committerLoïc Hoguin <[email protected]>2012-12-03 15:52:09 +0100
commit5ef4a15b48bfc1b5ca867b893b7cbd1b535175f7 (patch)
tree2749080d2ca52fc61f5ac8ab6a8e9f6470d46142 /test/ws_upgrade_with_opts_handler.erl
parent067958abd200c1c3fbc1956d4c6c30bc5efd344c (diff)
downloadcowboy-5ef4a15b48bfc1b5ca867b893b7cbd1b535175f7.tar.gz
cowboy-5ef4a15b48bfc1b5ca867b893b7cbd1b535175f7.tar.bz2
cowboy-5ef4a15b48bfc1b5ca867b893b7cbd1b535175f7.zip
Allow passing the Req and an updated Opts when upgrading protocols
Diffstat (limited to 'test/ws_upgrade_with_opts_handler.erl')
-rw-r--r--test/ws_upgrade_with_opts_handler.erl28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/ws_upgrade_with_opts_handler.erl b/test/ws_upgrade_with_opts_handler.erl
new file mode 100644
index 0000000..02d755e
--- /dev/null
+++ b/test/ws_upgrade_with_opts_handler.erl
@@ -0,0 +1,28 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+-module(ws_upgrade_with_opts_handler).
+-behaviour(cowboy_websocket_handler).
+
+-export([init/3]).
+-export([websocket_init/3]).
+-export([websocket_handle/3]).
+-export([websocket_info/3]).
+-export([websocket_terminate/3]).
+
+init(_Any, Req, _Opts) ->
+ {upgrade, protocol, cowboy_websocket, Req, <<"success">>}.
+
+websocket_init(_TransportName, Req, Response) ->
+ Req2 = cowboy_req:compact(Req),
+ erlang:send_after(10, self(), send_response),
+ {ok, Req2, Response}.
+
+websocket_handle(_Frame, Req, State) ->
+ {ok, Req, State}.
+
+websocket_info(send_response, Req, State = Response)
+ when is_binary(Response) ->
+ {reply, {text, Response}, Req, State}.
+
+websocket_terminate(_Reason, _Req, _State) ->
+ ok.