aboutsummaryrefslogtreecommitdiff
path: root/tests/wss.lua
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2025-04-16 13:09:46 -0500
committeramelia squires <[email protected]>2025-04-16 13:09:46 -0500
commit009eb7d43d9582856c275ad3b16f7e3ff94209cc (patch)
tree6d1f5ea000a6d72164a5b6e05b68dfbe0371ae06 /tests/wss.lua
parentdd7a8af4050454c3901987bff24a77334f892cc4 (diff)
merge thingy
Diffstat (limited to 'tests/wss.lua')
-rw-r--r--tests/wss.lua22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/wss.lua b/tests/wss.lua
deleted file mode 100644
index f9ecfbd..0000000
--- a/tests/wss.lua
+++ /dev/null
@@ -1,22 +0,0 @@
-llby = require("lullaby")
-
-local ws, error = llby.net.wss("echo.websocket.org:4432")
-
-if ws == nil then
- print(error)
- os.exit(12)
-end
-
-print(ws)
-
-for i=1,10 do
- local c = ws:read().content
- print(c)
- ws:write(c.."a")
-end
-
-ws:close()
-ws:close()
-
---ws:ping()
---add onclose?