v/vlib/net/websocket
Delyan Angelov 34d03801de tests: run ws_test.v only with -d network 2020-08-07 10:14:40 +03:00
..
README.md
events.v
handshake.v
io.v
ssl.v
utils.v
ws.v checker: add checks for byte casting (#5917) 2020-08-01 23:17:00 +02:00
ws_test.v tests: run ws_test.v only with -d network 2020-08-07 10:14:40 +03:00

README.md

WebSockets Library for V

Originally located at thecodrr/vws (contains example usage)

This is still work-in-progress!

Heavily inspired from cwebsockets.

The websockets library itself is ready and working (passes all tests of AutoBahn). What's left:

  • It needs to be updated and made to run with latest V.
  • No Windows Support (SSL issues)
  • No proper AutoBahn test client (a prototype is in the main.v but nothing proper).
  • No Websocket Server.
  • Remove the logger and move to log

What's needed for Windows support:

  1. SSL (either make the VSChannel work or OpenSSL)

General code cleanup etc. is also needed.