summaryrefslogtreecommitdiff
path: root/Ivy/IvyApplicationBinding.cs
diff options
context:
space:
mode:
authorfcolin2010-10-18 15:42:04 +0000
committerfcolin2010-10-18 15:42:04 +0000
commit5e310bef48ed719d15d88aafb9b92e674cb42b96 (patch)
tree76bbe7ba4fe2ec03576e6989eb2287cf03d2b5c8 /Ivy/IvyApplicationBinding.cs
parent657ff69295b138cf498968ac20653215c5d86252 (diff)
downloadivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.zip
ivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.tar.gz
ivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.tar.bz2
ivy-csharp-5e310bef48ed719d15d88aafb9b92e674cb42b96.tar.xz
utilisation de socket IPV6 si le domain contient un multicast IPV6 genre FF02::1
Diffstat (limited to 'Ivy/IvyApplicationBinding.cs')
-rw-r--r--Ivy/IvyApplicationBinding.cs4
1 files changed, 2 insertions, 2 deletions
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<IvyMessageEventArgs> 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)
{