summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Protocol.cpp
diff options
context:
space:
mode:
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)
-};
-
-}