Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
opcua_identifiers.h
1/******************************************************************************
2** Copyright (C) 2006-2007 ascolab GmbH. All Rights Reserved.
3** Web: http://www.ascolab.com
4**
5** SPDX-License-Identifier: GPL-2.0-or-later
6**
7** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
8** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
9**
10** Project: OpcUa Wireshark Plugin
11**
12** Description: Parser type definitions.
13**
14** This file was autogenerated on 6/10/2007 2:35:22 AM.
15** DON'T MODIFY THIS FILE!
16** XXX - well, except that you may have to. See the README.
17**
18******************************************************************************/
19
20#include <glib.h>
21#include <epan/packet.h>
22
23/* declare service parser function prototype */
24typedef void (*fctServiceParser)(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, int *pOffset);
25/* declare enum parser function prototype */
26typedef void (*fctEnumParser)(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, int *pOffset);
27/* declare type parser function prototype */
28typedef void (*fctComplexTypeParser)(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, int *pOffset, const char *szFieldName);
29/* declare type parser function prototype */
30typedef proto_item* (*fctSimpleTypeParser)(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, int *pOffset, int hfIndex);
31
32typedef struct _ParserEntry
33{
34 int iRequestId;
35 fctServiceParser pParser;
37
39{
40 int iRequestId;
41 fctComplexTypeParser pParser;
42 const char *typeName;
Definition opcua_identifiers.h:39
Definition opcua_identifiers.h:33
Definition packet_info.h:43
Definition proto.h:903
Definition tvbuff-int.h:35