aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmime/scan_result_private.h
blob: aa90430e1e09e5a38d11cd133d03860eb8c5182b (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
//
// Created by Vsevolod Stakhov on 2019-01-14.
//

#ifndef RSPAMD_SCAN_RESULT_PRIVATE_H
#define RSPAMD_SCAN_RESULT_PRIVATE_H

#include "scan_result.h"
#include "contrib/libucl/khash.h"

#ifdef  __cplusplus
extern "C" {
#endif

KHASH_MAP_INIT_STR (rspamd_options_hash, struct rspamd_symbol_option *);
/**
 * Result of metric processing
 */
KHASH_MAP_INIT_STR (rspamd_symbols_hash, struct rspamd_symbol_result);
#if UINTPTR_MAX <= UINT_MAX
/* 32 bit */
#define rspamd_ptr_hash_func(key) (khint32_t)(((uintptr_t)(key))>>1)
#else
/* likely 64 bit */
#define rspamd_ptr_hash_func(key) (khint32_t)(((uintptr_t)(key))>>3)
#endif
#define rspamd_ptr_equal_func(a, b) ((a) == (b))
KHASH_INIT (rspamd_symbols_group_hash,
		void *,
		double,
		1,
		rspamd_ptr_hash_func,
		rspamd_ptr_equal_func);

#ifdef  __cplusplus
}
#endif

#endif //RSPAMD_SCAN_RESULT_PRIVATE_H