summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/miop.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/miop.idl')
-rw-r--r--TAO/orbsvcs/orbsvcs/miop.idl55
1 files changed, 0 insertions, 55 deletions
diff --git a/TAO/orbsvcs/orbsvcs/miop.idl b/TAO/orbsvcs/orbsvcs/miop.idl
deleted file mode 100644
index b539dd7154a..00000000000
--- a/TAO/orbsvcs/orbsvcs/miop.idl
+++ /dev/null
@@ -1,55 +0,0 @@
-//
-// $Id$
-//
-// ================================================================
-//
-// = LIBRARY
-// TAO_PortableGroup
-//
-// = FILENAME
-// miop.pidl
-//
-// = DESCRIPTION
-//
-// This file contains MIOP packet and profile information from
-// the MIOP specification.
-//
-// ================================================================
-
-#ifndef MIOP_IDL
-#define MIOP_IDL
-
-#include "tao/IOP.pidl"
-#include "tao/GIOP.pidl"
-
-#pragma prefix "omg.org"
-
-module MIOP
-{
- typedef sequence <octet, 252> UniqueId;
-
- struct PacketHeader_1_0
- {
- char magic[4];
- octet hdr_version;
- octet flags;
- unsigned short packet_length;
- unsigned long packet_number;
- unsigned long number_of_packets;
- UniqueId Id;
- };
-
- typedef GIOP::Version Version;
-
- typedef string Address;
-
- struct UIPMC_ProfileBody
- {
- Version miop_version;
- Address the_address;
- short the_port;
- sequence<IOP::TaggedComponent> components;
- };
-};
-
-#endif