Alexey Melnichuk

Results 134 comments of Alexey Melnichuk

Please take a look to [autobahn_wclient_test](https://github.com/moteus/lua-lluv-websocket/blob/master/test/autobahn_wclient_test.lua). It uses pablic client API. You just need remove SSL parts and replace `uv.run()` call. To run test you need first run run wstest...

I write backend for lua-WebSocket based on my libuv binding (both sync and async). And it support wss [wss client async example](https://github.com/moteus/lua-lluv-websocket/blob/master/examples/wss_echo.lua) [wss client sync example](https://github.com/moteus/lua-lluv-websocket/blob/master/examples/co_wss_echo.lua).

> maybe you could make a fork, add your new backend and make a PR? Checkout #50 > that is intentionally, since the clients are related to each server instance...

I decide to release my version. I did not use it in real life yet but It pass all autobahn tests (except some related with fast fall). It support WSS...

> maybe we can add some tag/release script to this PR? You mean generate rockspecs? I work on Windows so I think I can use only Lua (not bash) Maybe...

I found that websocket.tools uses `mime` module from luasocket. So I have two options 1. Add luasocket in dependencies to websocket.core 2. Use some base64 module. And check at load...

You have to install lluv-ssl library.

1. [Link to the master](https://github.com/moteus/lua-lluv/archive/master.zip) is valid. May be your version on LuaRocks does not support TLS version required by githib. 2. Do you link against static library? If yes...

Both lluv and lluv-websocket support Lua 5.3 I use LuaRocks tou build them on Win/Linux/OSx systems Integrate libuv to some existed project may be difficult About building lluv library -...

On Windows I use my [lua-windows-environment](https://github.com/moteus/lua-windows-environment) distro which includes some prebuild external libraries (not Lua modules) and sligthly patched LuaRocks. I did not update it a while and it has...