From 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 20:24:20 +0200 Subject: Adding upstream version 14.2.21. Signed-off-by: Daniel Baumann --- src/civetweb/test/echo.lua | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/civetweb/test/echo.lua (limited to 'src/civetweb/test/echo.lua') diff --git a/src/civetweb/test/echo.lua b/src/civetweb/test/echo.lua new file mode 100644 index 00000000..bc715530 --- /dev/null +++ b/src/civetweb/test/echo.lua @@ -0,0 +1,41 @@ + +if mg.lua_type ~= "websocket" then + mg.write("HTTP/1.0 403 Forbidden\r\n") + mg.write("Connection: close\r\n") + mg.write("\r\n") + mg.write("forbidden") + return +end + + +-- table of all active connection +allConnections = {} + +-- function to get a client identification string +function who(tab) + local ri = allConnections[tab.client].request_info + return ri.remote_addr .. ":" .. ri.remote_port +end + +-- Callback to accept or reject a connection +function open(tab) + allConnections[tab.client] = tab + return true -- return true to accept the connection +end + +-- Callback for "Websocket ready" +function ready(tab) + return true -- return true to keep the connection open +end + +-- Callback for "Websocket received data" +function data(tab) + mg.write(1, tab.data); + return true -- return true to keep the connection open +end + +-- Callback for "Websocket is closing" +function close(tab) + allConnections[tab.client] = nil +end + -- cgit v1.2.3