1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net/websocket
2020-06-01 21:11:40 +02:00
..
examples websocket: move .nonce_size to pub mut: 2020-06-01 20:37:24 +03:00
logger copy thecodrr/vws to vlib/net/websocket 2020-04-08 14:22:31 +02:00
events.v websocket: eventbus and other cleanup 2020-04-08 21:19:01 +02:00
handshake.v websocket: make compile 2020-05-26 12:50:37 +02:00
io.v os: implement cp for nix 2020-06-01 21:11:40 +02:00
README.md websocket: eventbus and other cleanup 2020-04-08 21:19:01 +02:00
ssl.v websocket: make compile 2020-05-26 12:50:37 +02:00
utf8.v websocket: make compile 2020-05-26 12:50:37 +02:00
utils.v websocket: add Client.nonce_size field 2020-06-01 20:31:58 +03:00
ws_test.v websocket: make compile 2020-05-26 12:50:37 +02:00
ws.v websocket: move .nonce_size to pub mut: 2020-06-01 20:37:24 +03:00

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:

  1. It needs to be updated and made to run with latest V.
  2. No Windows Support (SSL issues)
  3. No proper AutoBahn test client (a prototype is in the main.v but nothing proper).
  4. No Websocket Server.
  5. 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.