Socket error 10053

socket error- Software caused connection abort. Error code : 10053

Action.c(16): Error : socket0 – Software caused connection abort. Error code : 10053.

This error is caused by socket communication process, which is usually like this :
normal C/S communication process is:
Server Listen;

Client Connect;

Server Accept;

Client Send;

Server Recv;

Client Close;

Server Close

If the Client side does not actively close the connection and directly exits, the Server side thread will cause an error of 10053 (this error usually does not affect much), and if the Server first actively closes the connection in the communication process, the Client side will also cause an error of 10053
When the network is down, it usually means that the Client thinks the Server is down and yells 10053

Read More: