aboutsummaryrefslogblamecommitdiffstats
path: root/test/handlers/loop_handler_body_h.erl
blob: ac7577374f5d10bf380ec395a87d2e400b206600 (plain) (tree)
1
2
3
4
5
6
7
8





                                                   
 
                  


                       
               
                         
                                                        



                                                
                                                 


                                      
%% This module implements a loop handler that reads
%% the request body after sending itself a message,
%% checks that its size is exactly 100000 bytes,
%% then sends a 200 reply back.

-module(loop_handler_body_h).

-export([init/2]).
-export([info/3]).
-export([terminate/3]).

init(Req, _) ->
	self() ! timeout,
	{long_polling, Req, undefined, 5000, hibernate}.

info(timeout, Req, State) ->
	{ok, Body, Req2} = cowboy_req:body(Req),
	100000 = byte_size(Body),
	{ok, cowboy_req:reply(200, Req2), State}.

terminate({normal, shutdown}, _, _) ->
	ok.