summaryrefslogtreecommitdiff
path: root/CSharp
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:54:02 +0000
committerfcolin2007-02-01 09:54:02 +0000
commit4aa217c51cfc5ef976ee3351c3af83a4ab549442 (patch)
tree7e9d833dd03edff0aac57b49255e9c3026c90041 /CSharp
parent3c6db00323eeaa3d38d8cfd9ac5c2d4c1a8abb2b (diff)
downloadivy-csharp-4aa217c51cfc5ef976ee3351c3af83a4ab549442.zip
ivy-csharp-4aa217c51cfc5ef976ee3351c3af83a4ab549442.tar.gz
ivy-csharp-4aa217c51cfc5ef976ee3351c3af83a4ab549442.tar.bz2
ivy-csharp-4aa217c51cfc5ef976ee3351c3af83a4ab549442.tar.xz
Utilisateur : Fcolin Date : 4/07/03 Heure : 18:39 Archivé dans $/EScribe/Ivy Commentaire: (vss 3)
Diffstat (limited to 'CSharp')
-rw-r--r--CSharp/Ivy/IvyPPC/Ivy.cs23
1 files changed, 4 insertions, 19 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs
index 2ef37ae..ccd8df3 100644
--- a/CSharp/Ivy/IvyPPC/Ivy.cs
+++ b/CSharp/Ivy/IvyPPC/Ivy.cs
@@ -84,17 +84,17 @@ namespace IvyBus
internal String appName;
/// <summary> the protocol version number
/// </summary>
- public const int PROCOCOLVERSION = 3;
+ internal const int PROCOCOLVERSION = 3;
/// <summary> the port for the UDP rendez vous, if none is supplied
/// </summary>
- public const int DEFAULT_PORT = 2010;
+ internal const int DEFAULT_PORT = 2010;
/// <summary> the domain for the UDP rendez vous
/// </summary>
- public static readonly String DEFAULT_DOMAIN = "127.255.255.255:" + DEFAULT_PORT;
+ internal static readonly String DEFAULT_DOMAIN = "127.255.255.255:" + DEFAULT_PORT;
/// <summary> the library version, useful for development purposes only, when java is
/// invoked with -DIVY_DEBUG
/// </summary>
- public const String libVersion = "1.0.0";
+ internal const String libVersion = "1.0.0";
private bool debug;
private static int serial = 0; /* an unique ID for each regexp */
@@ -109,8 +109,6 @@ namespace IvyBus
internal Hashtable regexp_out;
internal String ready_message = null;
- public const int TIMEOUTLENGTH = 3000;
-
/// <summary> Readies the structures for the software bus connexion.
/// *
/// All the dirty work is done un the start() method
@@ -563,19 +561,6 @@ namespace IvyBus
Console.Out.WriteLine("-->ivy<-- " + s);
}
- /* a small private method for debbugging purposes */
-
- public String domains(String toparse)
- {
- String s = "broadcasting on ";
- Ivy.Domain[] d = parseDomains(toparse);
- for (int index = 0; index < d.Length; index++)
- {
- s += d[index].Domainaddr + ":" + d[index].Port + " ";
- }
- return s;
- }
-
internal class Domain
{
public virtual String Domainaddr