From 43fd878c4e4d726dd4604ade4c0548eed783c4f3 Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Sun, 1 Mar 2015 10:46:31 -0500 Subject: Add "seed" capabilities to crc16_x25_ccitt (now crc16_x25_ccitt_seed) so we can remove CRC algorithm calculation in packet-assa_r3.c. Change-Id: I3143800f6ff922a309f5506d9acbc2c4293363b7 Reviewed-on: https://code.wireshark.org/review/7490 Reviewed-by: Jeff Morriss Petri-Dish: Jeff Morriss Reviewed-by: Anders Broman --- wsutil/crc16.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wsutil/crc16.h') diff --git a/wsutil/crc16.h b/wsutil/crc16.h index 53a8305e09..151b3f210d 100644 --- a/wsutil/crc16.h +++ b/wsutil/crc16.h @@ -50,7 +50,7 @@ WS_DLL_PUBLIC guint16 crc16_ccitt(const guint8 *buf, guint len); @param buf The buffer containing the data. @param len The number of bytes to include in the computation. @return The CRC16 X.25 CCITT checksum. */ -WS_DLL_PUBLIC guint16 crc16_x25_ccitt(const guint8 *buf, guint len); +WS_DLL_PUBLIC guint16 crc16_x25_ccitt_seed(const guint8 *buf, guint len, guint16 seed); /** Compute CRC16 CCITT checksum of a buffer of data. If computing the * checksum over multiple buffers and you want to feed the partial CRC16 -- cgit v1.2.3