4fc2a028174b3751fe4ce7c7c2b519faa40a2cf0
[obnox/wireshark/wip.git] / plugins / opcua / opcua_transport_layer.h
1 /******************************************************************************
2 ** $Id$
3 **
4 ** Copyright (C) 2006-2009 ascolab GmbH. All Rights Reserved.
5 ** Web: http://www.ascolab.com
6 ** 
7 ** This program is free software; you can redistribute it and/or
8 ** modify it under the terms of the GNU General Public License
9 ** as published by the Free Software Foundation; either version 2
10 ** of the License, or (at your option) any later version.
11 ** 
12 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
13 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
14 ** 
15 ** Project: OpcUa Wireshark Plugin
16 **
17 ** Description: OpcUa Transport Layer Decoder.
18 **
19 ** Author: Gerhard Gappmeier <gerhard.gappmeier@ascolab.com>
20 ** Last change by: $Author: gergap $
21 **
22 ******************************************************************************/
23
24 /* Transport Layer: message parsers */
25 void parseHello(proto_tree *tree, tvbuff_t *tvb, gint *pOffset);
26 void parseAcknowledge(proto_tree *tree, tvbuff_t *tvb, gint *pOffset);
27 void parseError(proto_tree *tree, tvbuff_t *tvb, gint *pOffset);
28 void parseMessage(proto_tree *tree, tvbuff_t *tvb, gint *pOffset);
29 void parseOpenSecureChannel(proto_tree *tree, tvbuff_t *tvb, gint *pOffset);
30 void parseCloseSecureChannel(proto_tree *tree, tvbuff_t *tvb, gint *pOffset);
31 void registerTransportLayerTypes(int proto);
32