mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Confirm Websocket pong frames are received by handlers
This commit is contained in:
parent
920adb9b82
commit
08a8d7b9e9
2 changed files with 36 additions and 1 deletions
23
test/handlers/ws_ping_h.erl
Normal file
23
test/handlers/ws_ping_h.erl
Normal file
|
@ -0,0 +1,23 @@
|
|||
%% This module sends an empty ping to the client and
|
||||
%% waits for a pong before sending a text frame. It
|
||||
%% is used to confirm server-initiated pings work.
|
||||
|
||||
-module(ws_ping_h).
|
||||
-behavior(cowboy_websocket).
|
||||
|
||||
-export([init/2]).
|
||||
-export([websocket_init/1]).
|
||||
-export([websocket_handle/2]).
|
||||
-export([websocket_info/2]).
|
||||
|
||||
init(Req, _) ->
|
||||
{cowboy_websocket, Req, undefined}.
|
||||
|
||||
websocket_init(State) ->
|
||||
{[{ping, <<>>}], State}.
|
||||
|
||||
websocket_handle(pong, State) ->
|
||||
{[{text, <<"OK!!">>}], State}.
|
||||
|
||||
websocket_info(_, State) ->
|
||||
{[], State}.
|
Loading…
Add table
Add a link
Reference in a new issue