aboutsummaryrefslogtreecommitdiffstats
path: root/adler32.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-21 18:00:22 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-21 18:00:22 +0000
commita19457e30034cd139a03b26da94722be6d5c4062 (patch)
tree6ef2bdf14707bf5b555ec957d4a5311c73a3fede /adler32.h
parentd4e9d551e65cc3497d201b35052a6aade258ec6f (diff)
From Tomas Kukosa: allow subdissectors to be registered for
NonStandardParameter data in the H.245 dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8206 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'adler32.h')
-rw-r--r--adler32.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/adler32.h b/adler32.h
new file mode 100644
index 0000000000..68305f5011
--- /dev/null
+++ b/adler32.h
@@ -0,0 +1,40 @@
+/* adler32.h
+ * Compute the Adler32 checksum (RFC 1950)
+ * 2003 Tomas Kukosa
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * 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 ADLER32_H
+#define ADLER32_H
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+unsigned long update_adler32(unsigned long adler, const unsigned char *buf, int len);
+unsigned long adler32_bytes(unsigned char *buf, int len);
+unsigned long adler32_str(const char *buf);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* ADLER32_H */
+