summaryrefslogtreecommitdiff
path: root/qpid/dotnet/Qpid.Client.Transport.Socket.Blocking
diff options
context:
space:
mode:
authorSteven Shaw <steshaw@apache.org>2006-11-28 21:43:07 +0000
committerSteven Shaw <steshaw@apache.org>2006-11-28 21:43:07 +0000
commitd83a0e745a70209785c12a8da1291cdcf6d0c1cd (patch)
tree25d70e49c4c59cf13b0072dcb302708f87046258 /qpid/dotnet/Qpid.Client.Transport.Socket.Blocking
parent38a31e9f8c8f09ca8d69c244386d63d98f77ae12 (diff)
downloadqpid-python-d83a0e745a70209785c12a8da1291cdcf6d0c1cd.tar.gz
Fix compiler warnings.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@480221 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/Qpid.Client.Transport.Socket.Blocking')
-rw-r--r--qpid/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs b/qpid/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs
index d165e33467..c2732a0ce1 100644
--- a/qpid/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs
+++ b/qpid/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs
@@ -53,7 +53,7 @@ namespace Qpid.Client.Transport.Socket.Blocking
{
_socket = new System.Net.Sockets.Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
- IPHostEntry ipHostInfo = Dns.Resolve(_host);
+ IPHostEntry ipHostInfo = Dns.Resolve(_host); // Note: don't fix this warning. We do this for .NET 1.1 compatibility.
IPAddress ipAddress = ipHostInfo.AddressList[0];
IPEndPoint ipe = new IPEndPoint(ipAddress, _port);