summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:02:32 +0000
committerfcolin2007-02-01 10:02:32 +0000
commitcf3f1d416b2b4f0a3e4ab1a2c62b46031e8255a3 (patch)
tree94ccd37d709d26b7072cf49eda0476ae2341592e /CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs
parentfae94f5310bd5498dde726a1aea6f1a30243cc72 (diff)
downloadivy-csharp-cf3f1d416b2b4f0a3e4ab1a2c62b46031e8255a3.zip
ivy-csharp-cf3f1d416b2b4f0a3e4ab1a2c62b46031e8255a3.tar.gz
ivy-csharp-cf3f1d416b2b4f0a3e4ab1a2c62b46031e8255a3.tar.bz2
ivy-csharp-cf3f1d416b2b4f0a3e4ab1a2c62b46031e8255a3.tar.xz
Utilisateur : Fcolin Date : 20/04/06 Heure : 13:15 Archivé dans $/CSharp/Ivy/Ivy Commentaire: filtrage classes (vss 10)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs b/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs
index ce60a7f..028b2c5 100644
--- a/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs
+++ b/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs
@@ -185,7 +185,7 @@ namespace IvyBus
}
bool IvyProtocol.receiveMsg()
{
- Ivy.ApplicationBinding bind = new Ivy.ApplicationBinding();
+ Ivy.ApplicationBinding bind;
MessageType msgType = MessageType.Die;
ushort msgId = 0;
string[] msgData = null;
@@ -207,6 +207,7 @@ namespace IvyBus
break;
case MessageType.AddRegexp:
+ bind = new Ivy.ApplicationBinding();
bind.type = Ivy.BindingType.BindRegexp;
bind.key = msgId;
bind.expression = msgData[0];
@@ -214,6 +215,7 @@ namespace IvyBus
break;
case MessageType.AddBinding:
+ bind = new Ivy.ApplicationBinding();
bind.type = Ivy.BindingType.BindSimple;
bind.key = msgId;
bind.expression = msgData[0];