#include <string.h> and/or #include <stdio.h> not needed.
[obnox/wireshark/wip.git] / epan / dissectors / packet-rrc.h
1 /* Do not modify this file.                                                   */
2 /* It is created automatically by the ASN.1 to Wireshark dissector compiler   */
3 /* packet-rrc.h                                                               */
4 /* ../../tools/asn2wrs.py -p rrc -c ./rrc.cnf -s ./packet-rrc-template -D . Class-definitions.asn PDU-definitions.asn InformationElements.asn Constant-definitions.asn Internode-definitions.asn */
5
6 /* Input file: packet-rrc-template.h */
7
8 #line 1 "packet-rrc-template.h"
9 /* packet-rrc-template.h
10  * Copyright 2009, Anders Broman <anders.broman@ericsson.com>
11  *
12  * $Id$
13  *
14  * Wireshark - Network traffic analyzer
15  * By Gerald Combs <gerald@wireshark.org>
16  * Copyright 1998 Gerald Combs
17  *
18  * This program is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU General Public License
20  * as published by the Free Software Foundation; either version 2
21  * of the License, or (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  */
32
33 #ifndef PACKET_RRC_H
34 #define PACKET_RRC_H
35
36 extern int proto_rrc;
37
38 /*--- Included file: packet-rrc-exp.h ---*/
39 #line 1 "packet-rrc-exp.h"
40 int dissect_rrc_InterRATHandoverInfo(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_);
41 void dissect_rrc_InterRATHandoverInfo_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_);
42 void dissect_rrc_ToTargetRNC_Container_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_);
43 void dissect_rrc_TargetRNC_ToSourceRNC_Container_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_);
44
45 /*--- End of included file: packet-rrc-exp.h ---*/
46 #line 30 "packet-rrc-template.h"
47
48 enum rrc_message_type {
49         RRC_MESSAGE_TYPE_INVALID        = 0,
50         RRC_MESSAGE_TYPE_PCCH           = 1,
51         RRC_MESSAGE_TYPE_UL_CCCH,
52         RRC_MESSAGE_TYPE_DL_CCCH,
53         RRC_MESSAGE_TYPE_UL_DCCH,
54         RRC_MESSAGE_TYPE_DL_DCCH
55 };
56
57 #define MAX_RRC_FRAMES  64
58 typedef struct rrc_info
59 {
60         enum rrc_message_type msgtype[MAX_RRC_FRAMES];
61 } rrc_info;
62
63 #endif  /* PACKET_RRC_H */