diff options
Diffstat (limited to 'CSharp/Ivy/IvyProbe/IvyProbe.cs')
-rw-r--r-- | CSharp/Ivy/IvyProbe/IvyProbe.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.cs b/CSharp/Ivy/IvyProbe/IvyProbe.cs index 8440358..03000db 100644 --- a/CSharp/Ivy/IvyProbe/IvyProbe.cs +++ b/CSharp/Ivy/IvyProbe/IvyProbe.cs @@ -34,11 +34,11 @@ namespace IvyProbe {
append(client.ApplicationName + " disconnected from " + client.RemoteAddress);
}
- private bool die(IvyClient client, int id, string message)
+ private Ivy.ApplicationExit die(IvyClient client, int id, string message)
{
append("receive die from "+client.ApplicationName+" cause: "+message );
// return true terminate the application
- return false;
+ return Ivy.ApplicationExit.FORCE_EXIT;
}
private void directMessage(IvyClient client, int id, string arg)
{
|