summaryrefslogtreecommitdiff
path: root/java/apps/NexusII/src/consts.java
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-18 23:00:19 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-18 23:00:19 +0000
commit34c2b0fa8792054fd61cecf6c4caaf78d7cca885 (patch)
treea55a01ace8d1d21594130e82c1b1f819857dfc01 /java/apps/NexusII/src/consts.java
parent20afbaafcedd602f774c5454d7dea0fc870d0ffb (diff)
downloadATCD-ACE-4_4_33.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_4_33'.ACE-4_4_33
Diffstat (limited to 'java/apps/NexusII/src/consts.java')
-rw-r--r--java/apps/NexusII/src/consts.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/java/apps/NexusII/src/consts.java b/java/apps/NexusII/src/consts.java
deleted file mode 100644
index 304ec41a41e..00000000000
--- a/java/apps/NexusII/src/consts.java
+++ /dev/null
@@ -1,40 +0,0 @@
-// package NexusII.client ;
-
-// An interface for all the public constants shared by clientApplet
-// All classes that need to access constants will implement this
-
-public interface consts {
- // Length of each field in the header
- public static final int FIELD_LENGTH = 32 ;
-
- // Total length of header
- public static final int PACKET_HEADER_LENGTH = 128;
-
- // Offset where we can find the data length
- public static final int DATA_LEN_OFFSET = 96;
-
- // Size of Queues where reader and writer work
- public static final int QUEUE_SIZE = 20 ;
-
- // Separator used by tokens in the packet
- public static final String SEPARATOR = " " ;
-
- // End of message
- public static final String END_OF_DATA = "\n" ;
-
- // Useful for debugging -- set to false for release version (demo) -- Aravind
- public static final boolean DEBUG = false;
-
- // Size of hash tables
- public static final int HASH_SIZE = 16 ;
-
- public static final String JOIN_STR = "Join" ;
- public static final String LEAVE_STR = "Leave" ;
- public static final String LUSERS_STR = "List Users" ;
- public static final String LROOMS_STR = "List Rooms" ;
-
- public static final int SERVER_PORT = 42429 ;
- public static final String NEXUS_LOGO = "Nexus_Logo.gif";
-}
-
-