2020-04-08 14:22:31 +02:00
|
|
|
# WebSockets Library for V
|
|
|
|
|
2020-04-08 19:44:30 +02:00
|
|
|
Originally located at [thecodrr/vws](https://github.com/thecodrr/vws) (contains example usage)
|
|
|
|
|
2020-04-08 14:22:31 +02:00
|
|
|
**This is still work-in-progress!**
|
|
|
|
|
2020-04-08 21:19:01 +02:00
|
|
|
Heavily inspired from [cwebsockets](https://github.com/jeremyhahn/cwebsocket).
|
2020-04-08 14:22:31 +02:00
|
|
|
|
|
|
|
The websockets library itself is ready and working (passes all tests of AutoBahn). What's left:
|
2020-07-28 10:22:03 +02:00
|
|
|
* [x] It needs to be updated and made to run with latest V.
|
|
|
|
* [ ] No Windows Support (SSL issues)
|
|
|
|
* [x] No proper AutoBahn test client (a prototype is in the main.v but nothing proper).
|
|
|
|
* [ ] No Websocket Server.
|
|
|
|
* [x] Remove the `logger` and move to `log`
|
2020-04-08 14:22:31 +02:00
|
|
|
|
|
|
|
## What's needed for Windows support:
|
|
|
|
|
|
|
|
1. SSL (either make the VSChannel work or OpenSSL)
|
|
|
|
|
|
|
|
General code cleanup etc. is also needed.
|