sq epan/dissectors/pidl/rcg/rcg.cnf
[wireshark-sm.git] / epan / in_cksum.h
blobaa98f5cb399f436417efb06c45a38c228254e255
1 /** @file
2 * Declaration of Internet checksum routine.
4 * Copyright (c) 1988, 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * SPDX-License-Identifier: BSD-3-Clause
8 */
10 #ifndef __IN_CKSUM_H__
11 #define __IN_CKSUM_H__
13 #include "ws_symbol_export.h"
15 typedef struct {
16 const uint8_t *ptr;
17 int len;
18 } vec_t;
20 #define SET_CKSUM_VEC_PTR(vecelem, data, length) \
21 G_STMT_START { \
22 vecelem.ptr = (data); \
23 vecelem.len = (length); \
24 } G_STMT_END
26 #define SET_CKSUM_VEC_TVB(vecelem, tvb, offset, length) \
27 G_STMT_START { \
28 vecelem.len = (length); \
29 vecelem.ptr = tvb_get_ptr((tvb), (offset), vecelem.len); \
30 } G_STMT_END
32 WS_DLL_PUBLIC uint16_t ip_checksum(const uint8_t *ptr, int len);
34 WS_DLL_PUBLIC uint16_t ip_checksum_tvb(tvbuff_t *tvb, int offset, int len);
36 WS_DLL_PUBLIC int in_cksum_ret_partial(const vec_t *vec, int veclen, uint16_t *partial);
38 WS_DLL_PUBLIC int in_cksum(const vec_t *vec, int veclen);
40 uint16_t in_cksum_shouldbe(uint16_t sum, uint16_t computed_sum);
42 #endif /* __IN_CKSUM_H__ */