diff options
author | fcolin | 2007-02-01 09:52:07 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:52:07 +0000 |
commit | 713c167d65620da9d5775675bd8166db041b5d4c (patch) | |
tree | 02a7f8235048474104778cbab0a0be1a590bb5be | |
parent | 9da43ee73e6701b39922cd45aa81ce82ec7e78c5 (diff) | |
download | ivy-csharp-713c167d65620da9d5775675bd8166db041b5d4c.zip ivy-csharp-713c167d65620da9d5775675bd8166db041b5d4c.tar.gz ivy-csharp-713c167d65620da9d5775675bd8166db041b5d4c.tar.bz2 ivy-csharp-713c167d65620da9d5775675bd8166db041b5d4c.tar.xz |
Utilisateur : Fcolin Date : 30/06/06 Heure : 13:40 Archivé dans $/CSharp/Ivy/Ivy Commentaire: gestion designer (vss 26)
-rw-r--r-- | CSharp/Ivy/Ivy/IvyWatcher.cs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/CSharp/Ivy/Ivy/IvyWatcher.cs b/CSharp/Ivy/Ivy/IvyWatcher.cs index df7788d..3b40325 100644 --- a/CSharp/Ivy/Ivy/IvyWatcher.cs +++ b/CSharp/Ivy/Ivy/IvyWatcher.cs @@ -96,8 +96,10 @@ namespace IvyBus stream.receiveMsg(out remoteEP, out version, out appPort, out appId, out appName);
IPAddress remotehost = remoteEP.Address;
+#if (!Mono)
traceDebug("BUSWATCHER Receive Broadcast from " + Dns.GetHostEntry(remotehost).HostName + ":" + remoteEP.Port);
-
+
+#endif
//TODO if ( !isInDomain( remotehost ) ) continue;
if (version != stream.ProtocolVersion)
@@ -111,10 +113,12 @@ namespace IvyBus continue;
if ((appPort == bus.applicationPort) && (remotehost.Equals(bus.applicationHost)))
continue;
+#if (!Mono)
traceDebug("BUSWATCHER reponse au Broadcast de " + Dns.GetHostEntry(remotehost).HostName + ":" + remoteEP.Port + " port " + appPort +
- " version " + version +
- " id " + appId +
- " name " + appName);
+ " version " + version +
+ " id " + appId +
+ " name " + appName);
+#endif
try
{
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
|