summaryrefslogtreecommitdiff
path: root/src/uqm/supermelee/netplay/crc.h
blob: 1744d112c36aba08a204bbba8d6ef4ebddd01806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 *  Copyright 2006  Serge van den Boom <svdb@stack.nl>
 *
 *  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 UQM_SUPERMELEE_NETPLAY_CRC_H_
#define UQM_SUPERMELEE_NETPLAY_CRC_H_

typedef struct crc_State crc_State;

#include "types.h"

#include <stddef.h>

#if defined(__cplusplus)
extern "C" {
#endif

struct crc_State {
	uint32 crc;
};

void crc_init(crc_State *state);
void crc_processBytes(crc_State *state, uint8 *buf, size_t bufLen);
void crc_processUint8(crc_State *state, uint8 val);
void crc_processUint16(crc_State *state, uint16 val);
void crc_processUint32(crc_State *state, uint32 val);
uint32 crc_finish(const crc_State *state);

#if defined(__cplusplus)
}
#endif

#ifdef DUMP_CRC_OPS
#include "netconnection.h"
		// for netplayDebugFile
//#define crc_log(...)  log_add (logDebug, __VA_ARGS__)
#define crc_log(...)  if (netplayDebugFile != NULL) \
		{ \
			uio_fprintf (netplayDebugFile, __VA_ARGS__); \
			uio_putc ('\n', netplayDebugFile); \
		} else \
			(void) 0
#endif

#endif  /* UQM_SUPERMELEE_NETPLAY_CRC_H_ */