dhbaird / easywsclient

A short and sweet WebSocket client for C++
MIT License
741 stars 205 forks source link

Check for invalid frame length #85

Closed dhbaird closed 5 years ago

dhbaird commented 5 years ago

https://tools.ietf.org/html/rfc6455 writes the "the most significant bit [of frame length] MUST be 0" so update the code to check for that.

dhbaird commented 5 years ago

Credit to Dane (4cad@silvertoque) for telling me about this.