diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-09-01 21:29:17 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-09-01 21:29:17 +0000 |
commit | 5a97bfe5b9808edc2f8e6693fab97f7742666c24 (patch) | |
tree | ece591c87e70d886a128cc4bfd0409572788490e /java/src/IceInternal/Protocol.java | |
parent | Removed a redundant call to fixId(). (diff) | |
download | ice-5a97bfe5b9808edc2f8e6693fab97f7742666c24.tar.bz2 ice-5a97bfe5b9808edc2f8e6693fab97f7742666c24.tar.xz ice-5a97bfe5b9808edc2f8e6693fab97f7742666c24.zip |
Renamed IceInternal.Connection to Ice.ConnectionI
Diffstat (limited to 'java/src/IceInternal/Protocol.java')
-rw-r--r-- | java/src/IceInternal/Protocol.java | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/java/src/IceInternal/Protocol.java b/java/src/IceInternal/Protocol.java index 7d2472fbcd6..09660da3a9a 100644 --- a/java/src/IceInternal/Protocol.java +++ b/java/src/IceInternal/Protocol.java @@ -9,7 +9,7 @@ package IceInternal; -final class Protocol +final public class Protocol { // // Size of the Ice protocol header @@ -23,27 +23,27 @@ final class Protocol // Compression status (Byte) // Message size (Int) // - final static int headerSize = 14; + public final static int headerSize = 14; // // The magic number at the front of each message // - final static byte magic[] = { 0x49, 0x63, 0x65, 0x50 }; // 'I', 'c', 'e', 'P' + public final static byte magic[] = { 0x49, 0x63, 0x65, 0x50 }; // 'I', 'c', 'e', 'P' // // The current Ice protocol and encoding version // - final static byte protocolMajor = 1; - final static byte protocolMinor = 0; - final static byte encodingMajor = 1; - final static byte encodingMinor = 0; + public final static byte protocolMajor = 1; + public final static byte protocolMinor = 0; + public final static byte encodingMajor = 1; + public final static byte encodingMinor = 0; // // The Ice protocol message types // - final static byte requestMsg = 0; - final static byte requestBatchMsg = 1; - final static byte replyMsg = 2; - final static byte validateConnectionMsg = 3; - final static byte closeConnectionMsg = 4; + public final static byte requestMsg = 0; + public final static byte requestBatchMsg = 1; + public final static byte replyMsg = 2; + public final static byte validateConnectionMsg = 3; + public final static byte closeConnectionMsg = 4; } |