LaySoft
LaySoft
After I installed the lluv-ssl library, and try the same example, another error occured: ``` lua: /usr/local/share/lua/5.2/lluv/websocket.lua:249: no cipher match stack traceback: [C]: in function 'assert' /usr/local/share/lua/5.2/lluv/websocket.lua:249: in function (...tail...
The Readme in the requirements section writes this: "ESP8266 board (Wemos/LOLIN D1 mini/**ESP01**/NodeMCU)" ESP01 is a ESP8266 based board: https://www.esp8266.com/wiki/doku.php?id=esp8266-module-family#esp-01
> Fixed by reconfigurating GCC with `--with-fpu=neon-fp-armv8` flag How can I apply this fix on the [openswoole package](http://pecl.php.net/package/openswoole )?
Both websocat 1.13.0 and websocat4 send the output of the "ls -la" command line by line, each line is a separate message. This okay. But websocat4 does not send the...
The code [you link](https://github.com/micropython/micropython/blob/master/extmod/modwebsocket.c) to may have something to do with websocket, but it's certainly not a complete, usable implementation. A websocket implementation must contain some form of strings like...
Thanks for the clarification, now I understand that the built-in websocket implementation is server. I need a client. I could get started with the aiohttp_ws module you mentioned, my first...