summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/websocket_basic.py.exp
Commit message (Collapse)AuthorAge
* extmod/modwebsocket: Fix websocket to send correct close frame.Felix Dörre2024-02-26
| | | | | | | | | | | When the websocket closes currently, it does not send a proper "close"-frame, but rather encodes the 0x8800-sequence inside a binary packet, which is wrong. The close packet is a different kind of websocket frame, according to https://www.rfc-editor.org/rfc/rfc6455. This change resolves an error in Firefox when the websocket closes. Signed-off-by: Felix Dörre <felix@dogcraft.de>
* tests/extmod: Rename websocket test to websocket_basic.Damien George2017-03-10
This is so that the filename of the test doesn't clash with the module name itself (being "websocket"), and lead to potential problems executing the test.