summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
diff options
context:
space:
mode:
Diffstat (limited to 'CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs')
-rw-r--r--CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
index eac345d..e574057 100644
--- a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
+++ b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
@@ -259,13 +259,13 @@ namespace IvyProbeConsole
println(client.ApplicationName + " disconnected ");
}
- private bool die(IvyClient client, int id, string message)
+ private Ivy.ApplicationExit die(IvyClient client, int id, string message)
{
println("received die msg from " + client.ApplicationName + " good bye cause: "+message);
/* I cannot stop the readLine(), because it is native code */
if (exitOnDie)
System.Environment.Exit(0);
- return true;
+ return Ivy.ApplicationExit.FORCE_EXIT;
}
private void directMessage(IvyClient client, int id, string arg)