summaryrefslogtreecommitdiff
path: root/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
commit383a2c3ba7afb9f3c49b6980b3b64439e9e8e6ae (patch)
treec5b74e36996a959b666363cfd5cba568617e9077 /dotnet/Qpid.Client.Transport.Socket.Blocking
parent9e3b387e4b2c0f1101270c993f7b7cafbb88f2e9 (diff)
downloadqpid-python-383a2c3ba7afb9f3c49b6980b3b64439e9e8e6ae.tar.gz
Fix compiler warnings.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@480221 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client.Transport.Socket.Blocking')
-rw-r--r--dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs b/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs
index d165e33467..c2732a0ce1 100644
--- a/dotnet/Qpid.Client.Transport.Socket.Blocking/BlockingSocketProcessor.cs
+++ b/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);