diff options
author | fcolin | 2007-02-01 09:55:52 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:55:52 +0000 |
commit | ffe6d1914d0f00cb7d33ea33e22afe4fa3275cd6 (patch) | |
tree | 2a5660c4884d61f282ccbe2c0d52190875eb2e59 /CSharp | |
parent | d7927311f0aec6d54332fef191be6f0d484ea259 (diff) | |
download | ivy-csharp-ffe6d1914d0f00cb7d33ea33e22afe4fa3275cd6.zip ivy-csharp-ffe6d1914d0f00cb7d33ea33e22afe4fa3275cd6.tar.gz ivy-csharp-ffe6d1914d0f00cb7d33ea33e22afe4fa3275cd6.tar.bz2 ivy-csharp-ffe6d1914d0f00cb7d33ea33e22afe4fa3275cd6.tar.xz |
Utilisateur : Fcolin Date : 10/02/06 Heure : 10:34 Archivé dans $/CSharp/Ivy/Ivy Commentaire: remove lock(this) (vss 58)
Diffstat (limited to 'CSharp')
-rw-r--r-- | CSharp/Ivy/IvyPPC/Ivy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs index 2255cbc..82979c0 100644 --- a/CSharp/Ivy/IvyPPC/Ivy.cs +++ b/CSharp/Ivy/IvyPPC/Ivy.cs @@ -929,7 +929,7 @@ namespace IvyBus bytes[3] = 255;
}
IPAddress bcast = new IPAddress(bytes);
- domainbus = bcast + ":" + DEFAULT_PORT;
+ domainbus = bcast + ":" + IvyWatcher.getPort(domainbus);
}
#else
if (domainbus == null || domainbus.Length == 0 )
|