aboutsummaryrefslogtreecommitdiffstats
path: root/asn1.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-10-02 06:13:29 +0000
committerGuy Harris <guy@alum.mit.edu>2003-10-02 06:13:29 +0000
commit860376a9abfb8b5d70062086660fd7e204a3317b (patch)
tree8fa6f32aeae4c543f8bd8d35b68dc95472be50de /asn1.h
parent18496f5d55bdf9bcde5d0cc6ef72d6d61906cca0 (diff)
From Samuel Qu, Michael Lum, and Jeff Morriss: TCAP support, and
"asn_id_decode1()" variant of "asn_id_decode()". svn path=/trunk/; revision=8586
Diffstat (limited to 'asn1.h')
-rw-r--r--asn1.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/asn1.h b/asn1.h
index 22f78f15aa..cbb5ef727c 100644
--- a/asn1.h
+++ b/asn1.h
@@ -1,7 +1,7 @@
/* asn1.h
* Definitions for ASN.1 BER dissection
*
- * $Id: asn1.h,v 1.13 2003/04/28 00:31:26 guy Exp $
+ * $Id: asn1.h,v 1.14 2003/10/02 06:13:28 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -116,6 +116,7 @@ extern void asn1_close (ASN1_SCK *asn1, int *offset);
extern int asn1_octet_decode (ASN1_SCK *asn1, guchar *ch);
extern int asn1_tag_decode (ASN1_SCK *asn1, guint *tag);
extern int asn1_id_decode (ASN1_SCK *asn1, guint *cls, guint *con, guint *tag);
+extern int asn1_id_decode1 (ASN1_SCK *asn1, guint *tag);
extern int asn1_length_decode (ASN1_SCK *asn1, gboolean *def, guint *len);
extern int asn1_header_decode(ASN1_SCK *asn1, guint *cls, guint *con,
guint *tag, gboolean *defp, guint *lenp);