summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyClient.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:57:25 +0000
committerfcolin2007-02-01 09:57:25 +0000
commitdb1b608ab03190def265d6d85c2f46789d222e70 (patch)
tree2e5cabc9c31f4371b973484a6bc9bf26cc2bd56c /CSharp/Ivy/IvyPPC/IvyClient.cs
parentb82792120f9fdc49b777a2ea845fdc83f6048ee6 (diff)
downloadivy-csharp-db1b608ab03190def265d6d85c2f46789d222e70.zip
ivy-csharp-db1b608ab03190def265d6d85c2f46789d222e70.tar.gz
ivy-csharp-db1b608ab03190def265d6d85c2f46789d222e70.tar.bz2
ivy-csharp-db1b608ab03190def265d6d85c2f46789d222e70.tar.xz
Utilisateur : Fcolin Date : 17/06/03 Heure : 18:52 Archivé dans $/EScribe/Ivy Commentaire: (vss 2)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyClient.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyClient.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyClient.cs b/CSharp/Ivy/IvyPPC/IvyClient.cs
index 532fdd5..d4b0489 100644
--- a/CSharp/Ivy/IvyPPC/IvyClient.cs
+++ b/CSharp/Ivy/IvyPPC/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