summaryrefslogtreecommitdiff
path: root/wiretap/ber.h
diff options
context:
space:
mode:
authorGraeme Lunt <graeme.lunt@smhs.co.uk>2006-05-08 19:56:36 +0000
committerGraeme Lunt <graeme.lunt@smhs.co.uk>2006-05-08 19:56:36 +0000
commitabefaf32bf4fdadb723cbf5583db0981a1d409a6 (patch)
tree91e01718c5e48e92aa5c5db210908daded959205 /wiretap/ber.h
parent146d22767c001cdc283b8f5e05f48250b8d9d61e (diff)
downloadwireshark-abefaf32bf4fdadb723cbf5583db0981a1d409a6.tar.gz
Basic Encoding Rules (BER) encoded file reading. Not really a packet trace format but still useful for dissecting arbitrary BER/DER ASN.1.
svn path=/trunk/; revision=18110
Diffstat (limited to 'wiretap/ber.h')
-rw-r--r--wiretap/ber.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/wiretap/ber.h b/wiretap/ber.h
new file mode 100644
index 0000000000..3863ad4105
--- /dev/null
+++ b/wiretap/ber.h
@@ -0,0 +1,28 @@
+/* ber.h
+ *
+ * Basic Encoding Rules (BER) file reading
+ *
+ * $Id$
+ *
+ * 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 __BER_H__
+#define __BER_H__
+
+int ber_open(wtap *wth, int *err, gchar **err_info);
+
+#endif