From 733fc71754b8873d3b34aa4c18937603f3fcc3e4 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 09:58:15 +0000 Subject: Utilisateur : Fcolin Date : 22/12/05 Heure : 15:14 Archivé dans $/CSharp/Ivy Commentaire: (vss 27) --- CSharp/Ivy/IvyPPC/IvyClient.cs | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'CSharp/Ivy/IvyPPC/IvyClient.cs') diff --git a/CSharp/Ivy/IvyPPC/IvyClient.cs b/CSharp/Ivy/IvyPPC/IvyClient.cs index 84f93e8..3982543 100644 --- a/CSharp/Ivy/IvyPPC/IvyClient.cs +++ b/CSharp/Ivy/IvyPPC/IvyClient.cs @@ -26,18 +26,6 @@ namespace IvyBus /// public class IvyClient : IvyProtocolInterface, IComparable { - //public class IvyClientPriority : IComparer - //{ - - // // Calls CaseInsensitiveComparer.Compare with the parameters reversed. - // int IComparer.Compare( Object x, Object y ) - // { - // IvyClient c1 = (IvyClient)x; - // IvyClient c2 = (IvyClient)y; - // return( c2.clientPriority - c1.clientPriority ); - // } - - //} public int CompareTo(IvyClient y) { return (y.clientPriority - clientPriority); @@ -235,7 +223,9 @@ namespace IvyBus lock( bindings ) { - IvyBindingSimple.Prepare( message ); + // hash message in V4 protocol only + if (Properties.Settings.Default.IvyProtocolVersion == 4) + IvyBindingSimple.Prepare(message); foreach (IvyBindingBase bind in bindings.Values ) { string[] args = bind.Match(message); -- cgit v1.1