summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Protocol.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2008-06-06 11:39:41 +0200
committerBenoit Foucher <benoit@zeroc.com>2008-06-06 11:39:41 +0200
commit966061fcb0e2ec4d5d7ed9c6c280eefb27209da7 (patch)
tree078246631fb864d9e908108d69917b18c6303c16 /cppe/src/IceE/Protocol.cpp
parentRemoved SL code (diff)
downloadice-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.cpp64
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)
-};
-
-}