njones / socketio

A Modern SocketIO library for go
MIT License
60 stars 9 forks source link

Fix -race conditions #22

Closed njones closed 2 years ago

njones commented 2 years ago

Removes race conditions from the code found by using -race in testing. Removes the CopyRuneN function that required using a go routine to work if favor of using a LimitedReader which doesn't require a go routine and potentially cause race conditions.