mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
23 lines
912 B
Erlang
23 lines
912 B
Erlang
![]() |
%% This module sets options dynamically and performs
|
||
|
%% some related relevant operation for testing the change.
|
||
|
|
||
|
-module(set_options_h).
|
||
|
|
||
|
-export([init/2]).
|
||
|
|
||
|
init(Req, State) ->
|
||
|
set_options(cowboy_req:binding(key, Req), Req, State).
|
||
|
|
||
|
set_options(<<"idle_timeout_short">>, Req0, State) ->
|
||
|
%% @todo This should be replaced by a cowboy_req:cast/cowboy_stream:cast.
|
||
|
#{pid := Pid, streamid := StreamID} = Req0,
|
||
|
Pid ! {{Pid, StreamID}, {set_options, #{idle_timeout => 500}}},
|
||
|
{_, Body, Req} = cowboy_req:read_body(Req0),
|
||
|
{ok, cowboy_req:reply(200, #{}, Body, Req), State};
|
||
|
set_options(<<"idle_timeout_long">>, Req0, State) ->
|
||
|
%% @todo This should be replaced by a cowboy_req:cast/cowboy_stream:cast.
|
||
|
#{pid := Pid, streamid := StreamID} = Req0,
|
||
|
Pid ! {{Pid, StreamID}, {set_options, #{idle_timeout => 60000}}},
|
||
|
{_, Body, Req} = cowboy_req:read_body(Req0),
|
||
|
{ok, cowboy_req:reply(200, #{}, Body, Req), State}.
|