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

A C# implementation of the WebSocket protocol client and server

Results 3 websocket-sharp issues
Sort by recently updated
recently updated
newest added

You can test using the following websocket server: wss://ndt-iupui-mlab1-del01.mlab-oti.measurement-lab.org:3010/ndt_protocol sub protocol: "ndt"

A semaphore wasn't released after it was catched which entirely prevented the WebSocket from receiving messages.

Hi, first of all great work! Code to reproduce: ``` var cts = new CancellationTokenSource(); var websocket = new WebSocket("ws://1.2.3.4/dummy", cts.Token); // After any moment in time cts.Cancel(); // this...