From 5e310bef48ed719d15d88aafb9b92e674cb42b96 Mon Sep 17 00:00:00 2001 From: fcolin Date: Mon, 18 Oct 2010 15:42:04 +0000 Subject: utilisation de socket IPV6 si le domain contient un multicast IPV6 genre FF02::1 --- Ivy/IvyApplicationBinding.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ivy/IvyApplicationBinding.cs') diff --git a/Ivy/IvyApplicationBinding.cs b/Ivy/IvyApplicationBinding.cs index b8932c8..d282583 100644 --- a/Ivy/IvyApplicationBinding.cs +++ b/Ivy/IvyApplicationBinding.cs @@ -147,7 +147,7 @@ namespace IvyBus temp(this, e); } #else - internal void Firevent(System.Threading.SynchronizationContext syncContext, IvyMessageEventArgs e) + internal void Firevent(System.Threading.SynchronizationContext syncContext, bool synchronous , IvyMessageEventArgs e) { //// Safely invoke an event: EventHandler temp = Callback; @@ -156,7 +156,7 @@ namespace IvyBus { throw new IvyException("(callCallback) Not callback for id " + e.Id); } - if (syncContext != null) + if (synchronous ) { SendOrPostCallback update = delegate(object state) { -- cgit v1.1