Skip to content

Commit

Permalink
2009-09-28 Sebastien Pouliot <sebastien@ximian.com>
Browse files Browse the repository at this point in the history
	* SocketAsyncEventArgs.cs: Default SocketError.AccessDenied on 
	Connect in case none of the DnsEndPoint provides an adequate 
	address (family).
	[Backport r142746]


svn path=/branches/mono-2-6/mcs/; revision=142747
  • Loading branch information
Sebastien Pouliot committed Sep 28, 2009
1 parent f65e2f5 commit 08a3283
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions mcs/class/System/System.Net.Sockets/ChangeLog
@@ -1,3 +1,10 @@
2009-09-28 Sebastien Pouliot <sebastien@ximian.com>

* SocketAsyncEventArgs.cs: Default SocketError.AccessDenied on
Connect in case none of the DnsEndPoint provides an adequate
address (family).
[Backport r142746]

2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>

* Socket_2_1.cs: Close(int timeout) blocks up to timeout ms if there's
Expand Down
Expand Up @@ -213,7 +213,7 @@ void ReceiveCallback ()
void ConnectCallback ()
{
LastOperation = SocketAsyncOperation.Connect;
SocketError error = SocketError.Success;
SocketError error = SocketError.AccessDenied;
try {
#if NET_2_1 && !MONOTOUCH
// Connect to the first address that match the host name, like:
Expand Down

0 comments on commit 08a3283

Please sign in to comment.