From a19457e30034cd139a03b26da94722be6d5c4062 Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 21 Aug 2003 18:00:22 +0000 Subject: 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 --- adler32.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 adler32.h (limited to 'adler32.h') 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 + * 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 */ + -- cgit v1.2.3