0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00
cowboy/test/http_SUITE_data/http_init_shutdown.erl

11 lines
258 B
Erlang
Raw Normal View History

%% Feel free to use, reuse and abuse the code in this file.
2013-04-24 20:28:44 +02:00
-module(http_init_shutdown).
-export([init/2]).
init(Req, _) ->
Req2 = cowboy_req:reply(<<"666 Init Shutdown Testing">>,
[{<<"connection">>, <<"close">>}], Req),
{shutdown, Req2, undefined}.