summaryrefslogtreecommitdiff
path: root/idl/gias/uid.idl
diff options
context:
space:
mode:
authorgal <graeme.lunt@smhs.co.uk>2015-04-07 09:35:16 +0100
committerAnders Broman <a.broman58@gmail.com>2015-04-14 06:10:15 +0000
commit085e95a3adfbe84432910a5e7f7c3c3127c244cc (patch)
treef351525358f026c85e1745bbc16d30d4f3cab86f /idl/gias/uid.idl
parent4c52738243215409ee93db845d98a817c1a0450a (diff)
downloadwireshark-085e95a3adfbe84432910a5e7f7c3c3127c244cc.tar.gz
Geospatial and Imagery Access Service (GIAS) Dissector
A Corba (GIOP) based protocol for the exchange of Intelligence, Surveillance and Reconnaissance (ISR) products. Defined in STANAG 4559/AEDP-5 "NATO Standard ISR Library Interface (NSILI)" See http://www.nato.int/structur/ac/224/standard/4559/4559.htm for more information. The dissector is generated using idl2wrs using the gias.idl, with some manual corrections, as noted in README.gias. Patch Set 4: Initialise uninitialised variables and no longer mark them as unused. Change-Id: Ieae93a135b30078f2d34e66f8c7b2e476438224e Reviewed-on: https://code.wireshark.org/review/7965 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'idl/gias/uid.idl')
-rw-r--r--idl/gias/uid.idl38
1 files changed, 38 insertions, 0 deletions
diff --git a/idl/gias/uid.idl b/idl/gias/uid.idl
new file mode 100644
index 0000000000..cbb54ca2de
--- /dev/null
+++ b/idl/gias/uid.idl
@@ -0,0 +1,38 @@
+#ifndef UID_IDL
+#define UID_IDL
+
+//***************************************************************
+ //* APPROVED via RFC N01-0268 on 6 August 2001
+//***************************************************************
+
+// *************************************************************
+//*
+//* The USIGS Universal Product Identifier
+//* Specification
+//*
+//*
+//* Description: Defines a universal USIGS product
+//* identification.
+//*
+//*
+//* History:
+//* Date Author Comment
+//* ----- ------ --------
+//* 29 Sept 98 J. Baldo and D. Lutz Initial release for
+//* review.
+//*
+//* Notes
+//* -------
+//* NONE
+//*
+//*
+// *************************************************************
+module UID
+{
+interface Product
+ {
+ };
+
+typedef sequence < Product > ProductList;
+};
+#endif