diff options
author | fcolin | 2007-02-01 10:06:23 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:06:23 +0000 |
commit | c81e482ee53617af0706e3e89c3933f9a1502daa (patch) | |
tree | 6c577077eeb999668dbc065d999761e43b81263d /CSharp/Ivy/IvyProbe/IvyProbe.cs | |
parent | 1286b0317e5a46f09ee680ceaa0bfa3d9156e843 (diff) | |
download | ivy-csharp-c81e482ee53617af0706e3e89c3933f9a1502daa.zip ivy-csharp-c81e482ee53617af0706e3e89c3933f9a1502daa.tar.gz ivy-csharp-c81e482ee53617af0706e3e89c3933f9a1502daa.tar.bz2 ivy-csharp-c81e482ee53617af0706e3e89c3933f9a1502daa.tar.xz |
Utilisateur : Fcolin Date : 8/02/06 Heure : 17:19 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: (vss 17)
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)
{
|