summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:56:10 +0000
committerfcolin2007-02-01 09:56:10 +0000
commit4574d0630db042cf82b29ffa37824e8ae93da44f (patch)
tree4c74f687f0bfaf5282c3aebf7ce123b35e88ffa8
parentf23c66a2b5ade0dbf601d9657f327789e909d560 (diff)
downloadivy-csharp-4574d0630db042cf82b29ffa37824e8ae93da44f.zip
ivy-csharp-4574d0630db042cf82b29ffa37824e8ae93da44f.tar.gz
ivy-csharp-4574d0630db042cf82b29ffa37824e8ae93da44f.tar.bz2
ivy-csharp-4574d0630db042cf82b29ffa37824e8ae93da44f.tar.xz
Utilisateur : Fcolin Date : 23/06/06 Heure : 15:31 Archivé dans $/CSharp/Ivy/Ivy Commentaire: modif suite chgt gestion des exceptions dans IvyCleint (vss 67)
-rw-r--r--CSharp/Ivy/IvyPPC/Ivy.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs
index 5f29976..7dd6b6c 100644
--- a/CSharp/Ivy/IvyPPC/Ivy.cs
+++ b/CSharp/Ivy/IvyPPC/Ivy.cs
@@ -496,8 +496,9 @@ namespace IvyBus
public static string Domains(string toparse)
{
+ string domainbus = GetDomain(toparse);
StringBuilder s = new StringBuilder("broadcasting on ");
- Ivy.Domain[] d = parseDomains(toparse);
+ Ivy.Domain[] d = parseDomains(domainbus);
for (int index = 0; index < d.Length; index++)
{
s.Append(d[index].Domainaddr);
@@ -875,6 +876,7 @@ namespace IvyBus
{
clients.Add(client);
}
+ client.SendBindings();
}
internal void OnMessage(IvyMessageEventArgs e)