summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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