aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/rfc7468.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-08-01 00:01:45 -0700
committerGuy Harris <guy@alum.mit.edu>2018-08-01 07:02:34 +0000
commit8d6e8f649894611dbe2feced7ae8eb3de863ff4b (patch)
treecb4152434c02157513bfb1d5f12b8b2b7f7076d6 /wiretap/rfc7468.h
parent75d4fac5f9163080eb442ae54c8ddbf526b8867f (diff)
RFC 7468 is PEM-inspired, but it's not PEM.
Do some renaming. Change-Id: If8fa85370014f9618df38d97048dd1c52a4c389f Reviewed-on: https://code.wireshark.org/review/28918 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/rfc7468.h')
-rw-r--r--wiretap/rfc7468.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/wiretap/rfc7468.h b/wiretap/rfc7468.h
new file mode 100644
index 0000000000..9df62051c2
--- /dev/null
+++ b/wiretap/rfc7468.h
@@ -0,0 +1,27 @@
+/* rfc7468.h
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __PEM_H__
+#define __PEM_H__
+
+#include <glib.h>
+#include "wtap.h"
+
+wtap_open_return_val rfc7468_open(wtap *wth, int *err, gchar **err_info);
+
+#endif
+
+/*
+* Editor modelines - http://www.wireshark.org/tools/modelines.html
+*
+* Local Variables:
+* c-basic-offset: 4
+* tab-width: 8
+* indent-tabs-mode: nil
+* End:
+*
+* vi: set shiftwidth=4 tabstop=8 expandtab:
+* :indentSize=4:tabSize=8:noTabs=true:
+*/