embedded-websocket icon indicating copy to clipboard operation
embedded-websocket copied to clipboard

A rust websocket library for embedded systems (no_std)

Results 6 embedded-websocket issues
Sort by recently updated
recently updated
newest added

Judging from the discussion on #13, it seems like adding async support would be a PITA because 1. maintenance hell with two copies of almost the same thing and 2....

This will require nightly, so it is disabled by default

It seem odd that this call to server_accept forces websocket_protocol to None. The change proposes a slightly less blunt approach of defaulting to WebSocketContext.sec_websocket_protocol_list[0] This probably should also include doco...

Added an async server example. The newly added constructor was required because ```read_header``` already reads from the stream before the websocket upgrade even happens. Also, I fixed some stuff clippy...

Having the following issue trying to compile the bare minimum: Error: ``` Compiling generic-array v0.14.6 Compiling generic-array v0.12.4 Compiling generic-array v0.13.3 Compiling sha1 v0.6.1 error[E0463]: can't find crate for `std`...