summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:45:59 +0000
committerfcolin2007-02-01 09:45:59 +0000
commit2cdb1cdcfe6b2c7c4b3b0eb32e12b516678b901e (patch)
tree7c509cf41ee7c9582cf4b7fba007d1ee25966487
parentb3978cb627b616e50da87972a2fe593712e728c0 (diff)
downloadivy-csharp-2cdb1cdcfe6b2c7c4b3b0eb32e12b516678b901e.zip
ivy-csharp-2cdb1cdcfe6b2c7c4b3b0eb32e12b516678b901e.tar.gz
ivy-csharp-2cdb1cdcfe6b2c7c4b3b0eb32e12b516678b901e.tar.bz2
ivy-csharp-2cdb1cdcfe6b2c7c4b3b0eb32e12b516678b901e.tar.xz
Utilisateur : Fcolin Date : 17/06/03 Heure : 18:52 Archivé dans $/EScribe/Ivy Commentaire: (vss 2)
-rw-r--r--CSharp/Ivy/Ivy/IvyClient.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/CSharp/Ivy/Ivy/IvyClient.cs b/CSharp/Ivy/Ivy/IvyClient.cs
index 532fdd5..d4b0489 100644
--- a/CSharp/Ivy/Ivy/IvyClient.cs
+++ b/CSharp/Ivy/Ivy/IvyClient.cs
@@ -154,16 +154,15 @@ namespace IvyBus
clientKey = clientSerial++;
in_stream = new StreamReader(socket.GetStream(),System.Text.Encoding.ASCII);
out_stream = new StreamWriter(socket.GetStream(),System.Text.Encoding.ASCII);
- Hashtable regexps = bus.regexp_out;
// sends our ID, whether we initiated the connexion or not
// the ID is the couple "host name,application Port", the host name
// information is in the socket itself, the port is not known if we
// initiate the connexion
send(MessageType.StartRegexp, bus.applicationPort, bus.appName);
// sends our regexps to the peer
- foreach (Int32 ikey in regexps.Keys )
+ foreach (Int32 ikey in bus.regexp_out.Keys )
{
- sendRegexp(ikey, (String) regexps[ikey]);
+ sendRegexp(ikey, (String) bus.regexp_out[ikey]);
}
send(MessageType.EndRegexp, 0, "");
// spawns a thread to manage the incoming traffic on this