summaryrefslogtreecommitdiff
path: root/IvyDaemon/IvyDaemon.cs
diff options
context:
space:
mode:
authorfcolin2010-10-18 15:42:04 +0000
committerfcolin2010-10-18 15:42:04 +0000
commit5e310bef48ed719d15d88aafb9b92e674cb42b96 (patch)
tree76bbe7ba4fe2ec03576e6989eb2287cf03d2b5c8 /IvyDaemon/IvyDaemon.cs
parent657ff69295b138cf498968ac20653215c5d86252 (diff)
downloadivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.zip
ivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.tar.gz
ivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.tar.bz2
ivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.tar.xz
utilisation de socket IPV6 si le domain contient un multicast IPV6 genre FF02::1
Diffstat (limited to 'IvyDaemon/IvyDaemon.cs')
-rw-r--r--IvyDaemon/IvyDaemon.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/IvyDaemon/IvyDaemon.cs b/IvyDaemon/IvyDaemon.cs
index 3924df2..9ec2cea 100644
--- a/IvyDaemon/IvyDaemon.cs
+++ b/IvyDaemon/IvyDaemon.cs
@@ -11,7 +11,7 @@ namespace IvyDaemon
using System.Net;
using System.Net.Sockets;
using System.Configuration;
- using System.Diagnostics;
+ using System.Diagnostics;
using IvyBus;
/// <summary> IvyDaemon: simple TCP to Ivy relay.
/// </summary>
@@ -25,7 +25,7 @@ namespace IvyDaemon
private TcpListener serviceSocket;
- private static bool debug = Properties.Settings.Default.IvyDebug;
+ private static bool debug = Properties.Settings.Default.IvyDebug;
private volatile Thread clientThread; // volatile to ensure the quick communication
private Ivy bus;
@@ -161,7 +161,7 @@ namespace IvyDaemon
}
[Conditional("DEBUG")]
- private static void traceDebug(string s)
+ private static void traceDebug(string s)
{
Trace.WriteLineIf(debug, "-->IvyDaemon<-- " + s);
}