diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 11:39:41 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 11:39:41 +0200 |
commit | 966061fcb0e2ec4d5d7ed9c6c280eefb27209da7 (patch) | |
tree | 078246631fb864d9e908108d69917b18c6303c16 /cppe/src/IceE/Protocol.cpp | |
parent | Removed SL code (diff) | |
download | ice-966061fcb0e2ec4d5d7ed9c6c280eefb27209da7.tar.bz2 ice-966061fcb0e2ec4d5d7ed9c6c280eefb27209da7.tar.xz ice-966061fcb0e2ec4d5d7ed9c6c280eefb27209da7.zip |
Removed Ice-E
Diffstat (limited to 'cppe/src/IceE/Protocol.cpp')
-rw-r--r-- | cppe/src/IceE/Protocol.cpp | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/cppe/src/IceE/Protocol.cpp b/cppe/src/IceE/Protocol.cpp deleted file mode 100644 index d3dc0f0ab43..00000000000 --- a/cppe/src/IceE/Protocol.cpp +++ /dev/null @@ -1,64 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#include <IceE/Protocol.h> - -namespace IceInternal -{ - -const Ice::Byte magic[] = { 0x49, 0x63, 0x65, 0x50 }; // 'I', 'c', 'e', 'P' - -const Ice::Byte requestHdr[] = -{ - magic[0], - magic[1], - magic[2], - magic[3], - protocolMajor, - protocolMinor, - encodingMajor, - encodingMinor, - requestMsg, - 0, // Compression status - 0, 0, 0, 0, // Message size (placeholder) - 0, 0, 0, 0 // Request id (placeholder) -}; - -const Ice::Byte requestBatchHdr[] = -{ - magic[0], - magic[1], - magic[2], - magic[3], - protocolMajor, - protocolMinor, - encodingMajor, - encodingMinor, - requestBatchMsg, - 0, // Compression status - 0, 0, 0, 0, // Message size (place holder) - 0, 0, 0, 0 // Number of requests in batch (placeholder) -}; - -const Ice::Byte replyHdr[] = -{ - magic[0], - magic[1], - magic[2], - magic[3], - protocolMajor, - protocolMinor, - encodingMajor, - encodingMinor, - replyMsg, - 0, // Compression status - 0, 0, 0, 0 // Message size (placeholder) -}; - -} |