summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:08:00 +0000
committerfcolin2007-02-01 10:08:00 +0000
commitd89a1aaef0ae4e3514a16862c64dfed76186fa69 (patch)
tree2f6a425d9d06677a9d3a17788b2fc6f159ca34ef
parentcdf78c20ea15e9f1ed545841500974ae16def73e (diff)
downloadivy-csharp-d89a1aaef0ae4e3514a16862c64dfed76186fa69.zip
ivy-csharp-d89a1aaef0ae4e3514a16862c64dfed76186fa69.tar.gz
ivy-csharp-d89a1aaef0ae4e3514a16862c64dfed76186fa69.tar.bz2
ivy-csharp-d89a1aaef0ae4e3514a16862c64dfed76186fa69.tar.xz
Utilisateur : Fcolin Date : 5/12/03 Heure : 9:29 Archivé dans $/EScribe/Ivy/IvyProbe Commentaire: (vss 2)
-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 126f568..132a933 100644
--- a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
+++ b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
@@ -258,7 +258,7 @@ namespace IvyProbe
private void connect(IvyClient client)
{
- println(client.ApplicationName + " connected ");
+ println(client.ApplicationName + " connected from "+client.RemoteAddress+":"+client.RemotePort);
foreach (string re in client.Regexps )
{
println(client.ApplicationName + " subscribes to " + re);
@@ -284,7 +284,7 @@ namespace IvyProbe
println(client.ApplicationName + " direct Message " + id + arg);
}
- private void receive(IvyClient client, String[] args)
+ private void receive(object data, IvyClient client, String[] args)
{
String s = client.ApplicationName + " sent";
for (int i = 0; i < args.Length; i++)