summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Protocol.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-03-14 22:53:03 +0000
committerMark Spruiell <mes@zeroc.com>2003-03-14 22:53:03 +0000
commit8da44c34ac9a2b7efa6b62da46e4136647fcc570 (patch)
tree4057933ee1b6af0f395a482c5c8ace56ddc12e20 /cpp/src/Ice/Protocol.h
parentbug fix (diff)
downloadice-8da44c34ac9a2b7efa6b62da46e4136647fcc570.tar.bz2
ice-8da44c34ac9a2b7efa6b62da46e4136647fcc570.tar.xz
ice-8da44c34ac9a2b7efa6b62da46e4136647fcc570.zip
remove compressed message types; modify message header to include
compression status
Diffstat (limited to 'cpp/src/Ice/Protocol.h')
-rw-r--r--cpp/src/Ice/Protocol.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpp/src/Ice/Protocol.h b/cpp/src/Ice/Protocol.h
index ae0e232bafe..ec8b602d4b0 100644
--- a/cpp/src/Ice/Protocol.h
+++ b/cpp/src/Ice/Protocol.h
@@ -29,9 +29,10 @@ namespace IceInternal
// Encoding version major (Byte)
// Encoding version minor (Byte)
// Message type (Byte)
+// Compression status (Byte)
// Message size (Int)
//
-const ::Ice::Int headerSize = 13;
+const ::Ice::Int headerSize = 14;
//
// The magic number at the front of each message
@@ -54,9 +55,6 @@ const ::Ice::Byte requestBatchMsg = 1;
const ::Ice::Byte replyMsg = 2;
const ::Ice::Byte validateConnectionMsg = 3;
const ::Ice::Byte closeConnectionMsg = 4;
-const ::Ice::Byte compressedRequestMsg = 5;
-const ::Ice::Byte compressedRequestBatchMsg = 6;
-const ::Ice::Byte compressedReplyMsg = 7;
}