aboutsummaryrefslogtreecommitdiffstats
path: root/examples/websocket/src/toppage_handler.erl
diff options
context:
space:
mode:
authorPablo Vieytes <[email protected]>2013-01-23 15:05:35 +0100
committerPablo Vieytes <[email protected]>2013-01-30 10:11:39 +0100
commitb8a0a8963b97387bd7b03b610107aa502c7c791d (patch)
tree0f1845e7309444772d5471e8da3fb432eb1173bd /examples/websocket/src/toppage_handler.erl
parentd9b3727a628975dfcc8707e143e45884873e42cb (diff)
downloadcowboy-b8a0a8963b97387bd7b03b610107aa502c7c791d.tar.gz
cowboy-b8a0a8963b97387bd7b03b610107aa502c7c791d.tar.bz2
cowboy-b8a0a8963b97387bd7b03b610107aa502c7c791d.zip
add websocket example
Diffstat (limited to 'examples/websocket/src/toppage_handler.erl')
-rw-r--r--examples/websocket/src/toppage_handler.erl24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/websocket/src/toppage_handler.erl b/examples/websocket/src/toppage_handler.erl
new file mode 100644
index 0000000..63099b0
--- /dev/null
+++ b/examples/websocket/src/toppage_handler.erl
@@ -0,0 +1,24 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+-module(toppage_handler).
+
+-export([init/3]).
+-export([handle/2]).
+-export([terminate/3]).
+
+init(_Transport, Req, []) ->
+ {ok, Req, undefined}.
+
+handle(Req, State) ->
+ Html = get_html(),
+ {ok, Req2} = cowboy_req:reply(200, [], Html, Req),
+ {ok, Req2, State}.
+
+terminate(_Reason, _Req, _State) ->
+ ok.
+
+get_html() ->
+ {ok, Cwd} = file:get_cwd(),
+ Filename =filename:join([Cwd, "priv", "html_ws_client.html"]),
+ {ok, Binary} = file:read_file(Filename),
+ Binary.