Winsock Error Codes - Brought to you by Winsock-Error.com

10052 "Network dropped connection on reset."

WSAENETRESET (Winsock error number: 10052)

Microsoft say this about Winsock error 10052 - WSAENETRESET:

The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. It can also be returned by setsockopt if an attempt is made to set SO_KEEPALIVE on a connection that has already failed.

Full details of Winsock TCP error 10052 - WSAENETRESET:

Berkeley description: The host you were connected to crashed and rebooted.

WinSock description: Same as Berkeley.

Detailed description:

setsockopt(): WinSock generates this error if you try to set SO_KEEPALIVE on a connection that's already timed out.

   
This page is designed to help you to understand Winsock TCP error 10052. It will not necessarily mean you can instantly fix issues when your computer tells you that Winsock is having problems with code 10052, rather it will give you the necessary background information to help solve the matter.

Programming declarations for 10052 (WSAENETRESET):

C#
long WSAENETRESET = 10052 ;

VB.net
Dim WSAENETRESET As Long = 10052

VB6
Dim WSAENETRESET As Long
WSAENETRESET = 10052