Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-02-26 | extmod/modwebsocket: Fix websocket to send correct close frame. | Felix Dörre | |
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> | |||
2017-03-10 | tests/extmod: Rename websocket test to websocket_basic. | Damien George | |
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. |