mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
9 lines
288 B
Erlang
9 lines
288 B
Erlang
%% This module sends a message to the pid passed in a header.
|
|
|
|
-module(send_message_h).
|
|
-export([init/2]).
|
|
|
|
init(Req, State) ->
|
|
Pid = list_to_pid(binary_to_list(cowboy_req:header(<<"x-test-pid">>, Req))),
|
|
Pid ! {Pid, self(), init, Req, State},
|
|
{ok, cowboy_req:reply(200, Req), State}.
|