TCPSocket 104

I’m using a TCPSocket and getting an error 104 from it. The documentation says that 104 has been deprecated since version 5.0. I’m most definitely using something newer than that. Any idea what might be causing it?

some of the engineers from Xojo Inc would need to look at the windows sources for the socket to see what they report there as 104 from the underlaying windows socket errors.

Looking at some old socket code of mine, it seems a 104 was a type of “Connection dropped”.

Asking Dr. Google brought up this helpful list:

https://gist.github.com/gabrielfalcao/4216897

104 = Connection reset by peer

Definitely seems like one passed though from the underlying platform code
The symbolic constant that is used is only referenced internally in the enum - no where else
And 104 occurs in other C headers but not any related to socket code that I can find