aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ber.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-11-19 09:08:50 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-11-19 09:08:50 +0000
commitb431591727807e3d8b20ce059dc213d82b215630 (patch)
tree0dc660177964da86bc38dd1940c1b4056e73d8f7 /epan/dissectors/packet-ber.h
parent7694a8659d46ce3483b745779baeccdf0a8c47fe (diff)
Get rod of " warning: identifier ‘class’ conflicts with C++ keyword"
svn path=/trunk/; revision=39945
Diffstat (limited to 'epan/dissectors/packet-ber.h')
-rw-r--r--epan/dissectors/packet-ber.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-ber.h b/epan/dissectors/packet-ber.h
index aaec7dfedf..d2ca232044 100644
--- a/epan/dissectors/packet-ber.h
+++ b/epan/dissectors/packet-ber.h
@@ -99,8 +99,8 @@ typedef int (*ber_old_type_fn)(gboolean, tvbuff_t*, int, asn1_ctx_t *actx, proto
/* this function dissects the identifier octer of the BER TLV.
* We only handle TAGs (and LENGTHs) that fit inside 32 bit integers.
*/
-extern int get_ber_identifier(tvbuff_t *tvb, int offset, gint8 *class, gboolean *pc, gint32 *tag);
-extern int dissect_ber_identifier(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint8 *class, gboolean *pc, gint32 *tag);
+extern int get_ber_identifier(tvbuff_t *tvb, int offset, gint8 *ber_class, gboolean *pc, gint32 *tag);
+extern int dissect_ber_identifier(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint8 *ber_class, gboolean *pc, gint32 *tag);
extern int dissect_unknown_ber(packet_info *pinfo, tvbuff_t *tvb, int offset, proto_tree *tree);
/* this function dissects the identifier octer of the BER TLV.
* We only handle (TAGs and) LENGTHs that fit inside 32 bit integers.
@@ -135,14 +135,14 @@ extern int dissect_ber_EmbeddedPDV_Type(gboolean implicit_tag, proto_tree *paren
#define BER_FLAGS_NOTCHKTAG 0x00000008
typedef struct _ber_sequence_t {
const int *p_id;
- gint8 class;
+ gint8 ber_class;
gint32 tag;
guint32 flags;
ber_callback func;
} ber_sequence_t;
/* To be removed when the transition to the "New" type is complete */
typedef struct _ber_old_sequence_t {
- gint8 class;
+ gint8 ber_class;
gint32 tag;
guint32 flags;
ber_old_callback func;
@@ -161,7 +161,7 @@ extern int dissect_ber_old_set(gboolean implicit_tag, asn1_ctx_t *actx, proto_tr
typedef struct _ber_choice_t {
guint32 value;
const int *p_id;
- gint8 class;
+ gint8 ber_class;
gint32 tag;
guint32 flags;
ber_callback func;
@@ -169,7 +169,7 @@ typedef struct _ber_choice_t {
typedef struct _ber_old_choice_t {
guint32 value;
- gint8 class;
+ gint8 ber_class;
gint32 tag;
guint32 flags;
ber_old_callback func;