summaryrefslogtreecommitdiff
path: root/plugins/opcua/opcua_identifiers.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-11-16 17:00:50 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-11-16 17:00:50 +0000
commit3c7ac068863e7f82b306425a8df12263a0d00caa (patch)
treee80c899112dd88a81be97c92d82536d33bceed5c /plugins/opcua/opcua_identifiers.h
parentb7b98d43157fda0246befae57e18da2ee8232dc9 (diff)
downloadwireshark-3c7ac068863e7f82b306425a8df12263a0d00caa.tar.gz
From Gerhard Gappmeier via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5410 :
This patch adds support for displaying OPC UA ExtensionObjects. An ExtensionObject is a mechanism to transport user defined structures as serialized blobs. Some types of ExtensionObjects are already defined by the OPC Foundation's OPC UA Specifications. These types can be implemented by this dissector, because they are well-known. Real user-defined or vendor-defined types are unlikely to be implemented by a passive dissector, because this would require browsing of the UA server's address space to retrieve the type information. Currently only the following types are supported: * DataChangeNotification * EventNotification Others OPC defined types will follow. From me: fix warnings: "format not a string literal and no format arguments" svn path=/trunk/; revision=34906
Diffstat (limited to 'plugins/opcua/opcua_identifiers.h')
-rw-r--r--plugins/opcua/opcua_identifiers.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/opcua/opcua_identifiers.h b/plugins/opcua/opcua_identifiers.h
index e817612b7c..7843850bb5 100644
--- a/plugins/opcua/opcua_identifiers.h
+++ b/plugins/opcua/opcua_identifiers.h
@@ -39,3 +39,10 @@ typedef struct _ParserEntry
int iRequestId;
fctServiceParser pParser;
} ParserEntry;
+
+typedef struct _ExtensionObjectParserEntry
+{
+ int iRequestId;
+ fctComplexTypeParser pParser;
+ gchar *typeName;
+} ExtensionObjectParserEntry;