<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fix error &#187; Socket</title>
	<atom:link href="http://www.fixerror.net/tag/socket/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fixerror.net</link>
	<description></description>
	<lastBuildDate>Fri, 05 Feb 2010 17:00:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Socket error 10036</title>
		<link>http://www.fixerror.net/2009/05/socket-error-10036/</link>
		<comments>http://www.fixerror.net/2009/05/socket-error-10036/#comments</comments>
		<pubDate>Tue, 19 May 2009 05:43:53 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=169</guid>
		<description><![CDATA[




Socket error 10036 &#8211; Operation now in progress

A blocking operation is currently executing and takes a long time to complete. Windows Sockets only allows a single blocking operation-per-task or thread-to be outstanding, and if any other function call is made (whether or not it references that or any other socket) the function fails with the [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Socket error 10036 &#8211; </strong>Operation now in progress</h2>
<p><img class="alignnone size-full wp-image-170" style="margin: 10px;" title="socket-error-10036" src="http://www.fixerror.net/wp-content/uploads/2009/05/socket-error-10036.jpg" alt="socket-error-10036" width="294" height="293" /></p>
<p>A blocking operation is currently executing and takes a long time to complete. Windows Sockets only allows a single blocking operation-per-task or thread-to be outstanding, and if any other function call is made (whether or not it references that or any other socket) the function fails with the WSAEINPROGRESS error.</p>
<p><em>Winsock description</em>: The Windows Sockets definition of this error is <em>very     different</em> from Berkeley Sockets. Winsock only allows a single blocking operation to be     outstanding per task (or thread), and if you make any other function call (whether or not     it references that or any other socket) the function fails with the WSAEINPROGRESS error.     It means that there is a blocking operation outstanding.</p>
<p>It is also possible that Winsock might return this error after an application calls     connect a second time on a non-blocking socket while the connection is pending (i.e. after     the first failed with WSAEWOULDBLOCK). This is what occurs in Berkeley Sockets.</p>
<p><a href="http://support.ipswitch.com/kb/WSK-19980714-EM07.htm">WSAEINPROGRESS &#8211; Error 10036</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/socket-error-10036/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Socket error 10035</title>
		<link>http://www.fixerror.net/2009/05/socket-error-10035/</link>
		<comments>http://www.fixerror.net/2009/05/socket-error-10035/#comments</comments>
		<pubDate>Mon, 18 May 2009 06:27:40 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=162</guid>
		<description><![CDATA[Socket error 10035 &#8211; Resource temporarily unavailable
This error happens when the winsock buffer of either the client or server side become full. It is a nonfatal error, and it is normal for WSAEWOULDBLOCK to be reported as the result from calling connect on a nonblocking SOCK_STREAM socket, since some time must elapse for the connection [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Socket error 10035 &#8211; </strong>Resource temporarily unavailable</h2>
<p>This error happens when the winsock buffer of either the client or server side become full. It is a nonfatal error, and it is normal for WSAEWOULDBLOCK to be reported as the result from calling connect on a nonblocking SOCK_STREAM socket, since some time must elapse for the connection to be established.</p>
<p><strong><img class="alignnone size-full wp-image-165" style="margin: 10px;" title="error-10035" src="http://www.fixerror.net/wp-content/uploads/2009/05/error-10035.png" alt="error-10035" width="300" height="298" /></strong></p>
<p><strong>Which are the causes for error 10035?</strong><br />
•	You&#8217;re trying to send a massive amount of information through the socket, so the output buffer of the system becomes full.<br />
•	You&#8217;re trying to send data through the socket to the remote host, but the remote host input buffer is full (because it&#8217;s receiving data slower than you&#8217;re sending it).<span id="more-162"></span></p>
<p>When you send data &#8211; you really send it to the TCP/IP subsystem of your machine (ie winsock). The system buffers this data (in the OutBuffer) and begins sending it to the remote host as fast as it can (which of course is only as fast as the receiver can receive it). If the OutBuffer gets filled, because you are sending data faster than the system can send it &#8211; you&#8217;ll get Winsock error 10035.<br />
In order to deal with this when using IPPort or IPDaemon, just catch the Winsock 10035 error and wait for the component&#8217;s ReadyToSend event to fire (this fires when the system is able to send data again). At that time, you can continue sending your data, starting with that which failed. For example (C# &#8211; if you need help with other languages let me know), the code below will loop until the length of the data to be sent is 0. If all goes normally, this loop will only be entered once and all of the data will be sent. After a while, if the input buffer fills up, the SetDataToSend inside the loop will fail with the Winsock 10035 error. The code will wait for the ReadyToSend event (the ready boolean flag), and loop. SetDataToSend will be called again, successfully.</p>
<p><strong>Resources:</strong></p>
<p><a href="http://geekswithblogs.net/lance/archive/2005/07/20/WinsockError10035.aspx">Winsock error 10035 means &#8220;Resource not available&#8221; or &#8220;Operation would block&#8221;</a></p>
<p><a href="http://www.errornerd.com/system.php?seed=Socket-Error&amp;gclid=CNjI193kuJoCFQqF3godeUu1dA">Download the Socket Error Repair Tool</a></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/socket-error-10035/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Error 10024</title>
		<link>http://www.fixerror.net/2009/05/error-10024/</link>
		<comments>http://www.fixerror.net/2009/05/error-10024/#comments</comments>
		<pubDate>Fri, 15 May 2009 07:04:41 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=154</guid>
		<description><![CDATA[Socket error 10024 &#8211; Too many open files
No process may have more than a system-defined number of file descriptors open at a time. No more file handles are available, so no more files can be opened. Generically, the error means the network system has run out of socket handles.

Hot fix this error
There may be too [...]]]></description>
			<content:encoded><![CDATA[<h2>Socket error 10024 &#8211; Too many open files</h2>
<p>No process may have more than a system-defined number of file descriptors open at a time. No more file handles are available, so no more files can be opened. Generically, the error means the network system has run out of socket handles.</p>
<p><img class="alignnone size-full wp-image-159" style="margin: 10px;" title="error-10024" src="http://www.fixerror.net/wp-content/uploads/2009/05/error-10024.png" alt="error-10024" width="300" height="298" /></p>
<h2>Hot fix this error</h2>
<p>There may be too many Winsock applications running simultaneously, but this is unlikely since most network systems have many socket handles available. This error also could occur if an application opens and closes sockets often, but doesn&#8217;t properly close the sockets (so it leaves them open, as &#8220;orphans&#8221;). To recover the orphaned sockets, you can try closing the application and restarting it to recover the open sockets; you may have to end all Winsock applications (to force an unload of the Winsock DLL).  <a href="http://support.ipswitch.com/kb/WSK-19980714-EM12.htm">The source</a></p>
<p><a href="http://www.errornerd.com/system.php?seed=Socket-Error&amp;gclid=CNjI193kuJoCFQqF3godeUu1dA">Download the Socket Error Repair Tool</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/error-10024/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Error 10022</title>
		<link>http://www.fixerror.net/2009/05/error-10022/</link>
		<comments>http://www.fixerror.net/2009/05/error-10022/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:14:09 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=132</guid>
		<description><![CDATA[Socket error 10022 - Invalid argument

Solution: Some invalid argument was supplied (for example, specifying an invalid level to the setsockopt function). In some instances, it also refers to the current state of the socket.
Download the Socket Error Repair Tool
]]></description>
			<content:encoded><![CDATA[<h2><strong>Socket error 10022 -</strong> Invalid argument</h2>
<p><img class="alignnone size-full wp-image-135" style="margin: 10px;" title="error-10022" src="http://www.fixerror.net/wp-content/uploads/2009/05/error-10022.jpg" alt="error-10022" width="297" height="297" /></p>
<p><strong>Solution:</strong><span style="font-size: x-small;"> </span>Some invalid argument was supplied (for example, specifying an invalid level to the setsockopt function). In some instances, it also refers to the current state of the socket.</p>
<p><a href="http://www.errornerd.com/system.php?seed=Socket-Error&amp;gclid=CNjI193kuJoCFQqF3godeUu1dA">Download the Socket Error Repair Tool</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/error-10022/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fix socket error 10014</title>
		<link>http://www.fixerror.net/2009/05/fix-socket-error-10014/</link>
		<comments>http://www.fixerror.net/2009/05/fix-socket-error-10014/#comments</comments>
		<pubDate>Wed, 13 May 2009 07:47:12 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=128</guid>
		<description><![CDATA[Socket error 10014: Bad address

The system detected an invalid pointer address in attempting to use a pointer argument of a call. This error occurs if an application passes an invalid pointer value, or if the length of the buffer is too small. For instance, if the length of an argument, which is a sockaddr structure, [...]]]></description>
			<content:encoded><![CDATA[<h2>Socket error 10014: Bad address</h2>
<p><img class="alignnone size-full wp-image-129" style="margin: 10px;" title="socket-error-10014" src="http://www.fixerror.net/wp-content/uploads/2009/05/socket-error-10014.jpg" alt="socket-error-10014" width="294" height="293" /></p>
<p>The system detected an invalid pointer address in attempting to use a pointer argument of a call. This error occurs if an application passes an invalid pointer value, or if the length of the buffer is too small. For instance, if the length of an argument, which is a sockaddr structure, is smaller than the sizeof(sockaddr).</p>
<p>The sockaddr structure varies depending on the protocol selected. Except for the sa_family parameter, sockaddr contents are expressed in network byte order.</p>
<p>In Windows Sockets 2, the name parameter is not strictly interpreted as a pointer to a sockaddr structure. It is presented in this manner for Windows Sockets compatibility. The actual structure is interpreted differently in the context of different address families. The only requirements are that the first u_short is the address family and the total size of the memory buffer in bytes is namelen.</p>
<p><a href="http://www.bestregcleaner.com/indexerror.php?apid=A228672b&amp;apflag=1&amp;key=Error+10014&amp;gclid=CIvb0I7kuJoCFYFA3god-RSbcQ">Download Error 10014 Repair Tool for Free</a></p>
<p><a href="http://www.errornerd.com/system.php?seed=Socket-Error&amp;gclid=CNjI193kuJoCFQqF3godeUu1dA">Download the Socket Error Repair Tool</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/fix-socket-error-10014/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Socket error 10013 &#8211; Permission denied &#8211; Error Code 0&#215;271D</title>
		<link>http://www.fixerror.net/2009/05/socket-error-10013-permission-denied-error-code-0x271d/</link>
		<comments>http://www.fixerror.net/2009/05/socket-error-10013-permission-denied-error-code-0x271d/#comments</comments>
		<pubDate>Tue, 12 May 2009 06:07:35 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=118</guid>
		<description><![CDATA[An attempt was made to access a socket in a way forbidden by its access permissions.
 Errors on your system may be caused by invalid registry entries and outdated, corrupt drivers or an attempt was made to access a file (or, in some cases, a directory) in a way that is incompatible with the file&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span class="desc">An attempt was made to access a <strong>socket </strong>in a way forbidden by its access permissions.</span></p>
<p class="MsoNormal"><span class="desc"> </span><strong>Errors </strong>on your system may be caused by invalid registry entries and outdated, corrupt drivers or an attempt was made to access a file (or, in some cases, a directory) in a way that is incompatible with the file&#8217;s attributes. For example, the <strong>error </strong>can occur when an attempt is made to read from a file that is not open, to open an existing read-only file for writing, or to open a directory instead of a file.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong><img class="alignnone size-full wp-image-121" style="margin: 10px;" title="socket-error-10013" src="http://www.fixerror.net/wp-content/uploads/2009/05/socket-error-10013.png" alt="socket-error-10013" width="256" height="256" /></strong></p>
<p class="MsoNormal"><strong>How to fix socket error 10013 </strong>:</p>
<p class="MsoNormal">1. In your firewall program, check your program permissions settings.</p>
<p class="MsoNormal">2. To identify <strong>errors </strong>in your system <a href="http://www.pc-library.com/scan/registry/">run a free registry scan</a>. We recommend <a href="http://www.pc-library.com/scan/drivers/">DriverScanner</a> to check your PC for outdated drivers.</p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://www.cleanerrors.com/fix/error-10013/">Another free program for scanning and fixing the socket error <strong>10013 </strong></a></p>
<p class="MsoNormal">
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/socket-error-10013-permission-denied-error-code-0x271d/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Socket Error 10004</title>
		<link>http://www.fixerror.net/2009/05/socket-error-10004/</link>
		<comments>http://www.fixerror.net/2009/05/socket-error-10004/#comments</comments>
		<pubDate>Mon, 11 May 2009 07:48:54 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=107</guid>
		<description><![CDATA[Socket error 10004 &#8211; Interrupted function call
Solutions:A blocking operation was interrupted by a call to WSACancelBlockingCall.
The WSACancelBlockingCall function has been removed in compliance with the Windows Sockets 2 specification, revision 2.2.0.
The function is not exported directly by WS2_32.DLL and Windows Sockets 2 applications should not use this function. Windows Sockets 1.1 applications that call this [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Socket error 10004</strong> &#8211; Interrupted function call</p>
<p><strong>Solutions</strong>:A blocking operation was interrupted by a call to WSACancelBlockingCall.</p>
<p>The WSACancelBlockingCall function has been removed in compliance with the Windows Sockets 2 specification, revision 2.2.0.</p>
<p>The function is not exported directly by WS2_32.DLL and Windows Sockets 2 applications should not use this function. Windows Sockets 1.1 applications that call this function are still supported through the WINSOCK.DLL and WSOCK32.DLL.</p>
<p><strong><img class="alignnone size-full wp-image-110" style="margin: 10px;" title="error_button1" src="http://www.fixerror.net/wp-content/uploads/2009/05/error_button1.png" alt="error_button1" width="332" height="332" /></strong></p>
<p><strong>Fix Error-10004.</strong> Download and install <a style="color: blue;" rel="nofollow" href="http://www.cleanerrors.com/fix/download4.php">Regcure</a>, a Microsoft Windows tool that will analyze your registry for missing, obsolete, and corrupt entries resulting from failed installations, incomplete un-installations, disabled drivers, and spyware applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/05/socket-error-10004/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Socket error</title>
		<link>http://www.fixerror.net/2009/04/socket-error/</link>
		<comments>http://www.fixerror.net/2009/04/socket-error/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 08:33:58 +0000</pubDate>
		<dc:creator>Ezu</dc:creator>
				<category><![CDATA[General errors]]></category>
		<category><![CDATA[Windows error]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.fixerror.net/?p=69</guid>
		<description><![CDATA[What is a socket?
 Definition: A socket is one endpoint of a two-way communication link between two programs running on the network. A socket is bound to a port number so that the TCP layer can identify the application that data is destined to be sent.
A server application normally listens to a specific port waiting [...]]]></description>
			<content:encoded><![CDATA[<h2>What is a socket?</h2>
<p class="MsoNormal"><em> <strong>Definition:</strong> A <em>socket</em> is one endpoint of a two-way communication link between two programs running on the network. A socket is bound to a port number so that the TCP layer can identify the application that data is destined to be sent.</em></p>
<p class="MsoNormal">A server application normally listens to a specific port waiting for connection requests from a client. When a connection request arrives, the client and the server establish a dedicated connection over which they can communicate. During the connection process, the client is assigned a local port number, and binds a <em>socket</em> to it. The client talks to the server by writing to the socket and gets information from the server by reading from it. Similarly, the server gets a new local port number (it needs a new port number so that it can continue to listen for connection requests on the original port). The server also binds a socket to its local port and communicates with the client by reading from and writing to it.</p>
<p class="MsoNormal"><span id="more-69"></span></p>
<h2>How we can fix socket error</h2>
<p class="MsoNormal"><strong>Socket error 0 &#8211; </strong>Directly send error</p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/socket-error-10004/"><strong>Socket error 10004 &#8211; </strong>Interrupted function call</a></p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/socket-error-10013-permission-denied-error-code-0x271d/"><strong>Socket error 10013 &#8211; </strong>Permission denied</a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/fix-socket-error-10014/"><strong>Socket error 10014 &#8211; </strong>Bad address</a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/error-10022/"><strong>Socket error 10022 -</strong> Invalid argument</a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/error-10024/"><strong>Socket error 10024 &#8211; </strong>Too many open files</a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/socket-error-10035/"><strong>Socket error 10035 &#8211; </strong>Resource temporarily unavailable</a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><a href="http://www.fixerror.net/2009/05/socket-error-10036/"><strong>Socket error 10036 &#8211; </strong>Operation now in progress</a></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10037 -</strong> Operation already in progress</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10038 &#8211; </strong>Socket operation on non-socket</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10039 &#8211; </strong>Destination address required</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10040 &#8211; </strong>Message too long</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10041 &#8211; </strong>Protocol wrong type for socket</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10042 &#8211; </strong>Bad protocol option</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10043 &#8211; </strong>Protocol not supported</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10044 &#8211; </strong>Socket type not supported</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10045 &#8211; </strong>Operation not supported</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10046 &#8211; </strong>Protocol family not supported</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10047 &#8211; </strong>Address family not supported by protocol family</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10048 &#8211; </strong>Address already in use</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10049 &#8211; </strong>Cannot assign requested address</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10050 &#8211; </strong>Network is down</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10051 -</strong> Network is unreachable</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10052 -</strong> Network dropped connection on reset</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10053 &#8211; </strong>Software caused connection abort</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10054 &#8211; </strong>Connection reset by peer</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10055 &#8211; </strong>No buffer space available</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10056 -</strong> Socket is already connected</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10057 &#8211; </strong>Socket is not connected</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10058 &#8211; </strong>Cannot send after socket shutdown</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10060 &#8211; </strong>Connection timed out</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10061 &#8211; </strong>Connection refused</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10064 &#8211; </strong>Host is down</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10065 &#8211; </strong>No route to host</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10067 &#8211; </strong>Too many processes</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10091 &#8211; </strong>Network subsystem is unavailable</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10092 -</strong> WINSOCK.DLL version out of range</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10093 &#8211; </strong>Successful WSAStartup not yet performed</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 10094 &#8211; </strong>Graceful shutdown in progress</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 11001 &#8211; </strong>Host not found</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 11002 &#8211; </strong>Non-authoritative host not found</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 11003 &#8211; </strong>This is a non-recoverable error</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong>Socket error 11004 &#8211; </strong>Valid name, no data record of requested type</p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal"><strong><a href="http://www.qksoft.com/qk-smtp-server/socket-error.html">Here you can find the description of these errors</a><br />
</strong></p>
<p class="MsoNormal"><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fixerror.net/2009/04/socket-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
