aboutsummaryrefslogtreecommitdiffstats
path: root/epan/asn1.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-05-01 22:05:11 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-05-01 22:05:11 +0000
commit1cf1f16391a327b1a74045c60c492c39ab7569f0 (patch)
tree5bef9b4ab380f93035ddf293d1f1afe92695c153 /epan/asn1.h
parent8a2810c15a808a37a63ad5162cfbd5af2d38b461 (diff)
Split out common asn1 stuff to asn1.h and include that where needed.
svn path=/trunk/; revision=21635
Diffstat (limited to 'epan/asn1.h')
-rw-r--r--epan/asn1.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/epan/asn1.h b/epan/asn1.h
new file mode 100644
index 0000000000..0ab590bf2a
--- /dev/null
+++ b/epan/asn1.h
@@ -0,0 +1,45 @@
+/* asn1.h
+ * Common data for ASN.1
+ * 2007 Anders Broman
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __ASN1_H__
+#define __ASN1_H__
+
+typedef enum {
+ ASN1_ENC_BER, /* X.690 - BER, CER, DER */
+ ASN1_ENC_PER, /* X.691 - PER */
+ ASN1_ENC_ECN, /* X.692 - ECN */
+ ASN1_ENC_XER /* X.693 - XER */
+} asn1_enc_e;
+
+typedef struct _asn1_ctx_t {
+ asn1_enc_e encoding;
+ gboolean aligned;
+ packet_info *pinfo;
+ proto_item *created_item;
+ void *value_ptr;
+ void *private_data;
+} asn1_ctx_t;
+
+#endif /* __ASN1_H__ */