Ricky

Results 3 comments of Ricky

I fixed the issue, by changing.... `new Thread(() => TcpAcceptThread(listenSocket, callback)).Start();` to... ``` while (true) { TcpAcceptThread(listenSocket, callback); } ``` I think removed my own while loop when calling AweSock.TcpAccept...

Has there been any official progress with providing better error reporting? I keep running into panic errors as the original poster did, and the report is absolutely zero help.

> @shockdot Did you try the [patch](https://github.com/ThePhD/sol2/issues/1386#issuecomment-1236034531)? Does it improve the error messages in your tests? > > Perhaps if you wanted to repackage the raw diffs as a pull...