summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC/IvyClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyClient.cs')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyClient.cs16
1 files changed, 3 insertions, 13 deletions
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
/// </remarks>
public class IvyClient : IvyProtocolInterface, IComparable<IvyClient>
{
- //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);