ci: bsds: rebuild packages after reconfiguration
[m6w6/libmemcached] / include / libmemcached-1.0 / hash.h
1 /*
2 +--------------------------------------------------------------------+
3 | libmemcached - C/C++ Client Library for memcached |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted under the terms of the BSD license. |
7 | You should have received a copy of the license in a bundled file |
8 | named LICENSE; in case you did not receive a copy you can review |
9 | the terms online at: https://opensource.org/licenses/BSD-3-Clause |
10 +--------------------------------------------------------------------+
11 | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ |
12 | Copyright (c) 2020 Michael Wallner <mike@php.net> |
13 +--------------------------------------------------------------------+
14 */
15
16 #pragma once
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 /* The two public hash bits */
23 LIBMEMCACHED_API
24 uint32_t memcached_generate_hash_value(const char *key, size_t key_length,
25 memcached_hash_t hash_algorithm);
26
27 LIBMEMCACHED_API
28 const hashkit_st *memcached_get_hashkit(const memcached_st *ptr);
29
30 LIBMEMCACHED_API
31 memcached_return_t memcached_set_hashkit(memcached_st *ptr, hashkit_st *hashk);
32
33 LIBMEMCACHED_API
34 uint32_t memcached_generate_hash(const memcached_st *ptr, const char *key, size_t key_length);
35
36 LIBMEMCACHED_API
37 void memcached_autoeject(memcached_st *ptr);
38
39 LIBMEMCACHED_API
40 const char *libmemcached_string_hash(memcached_hash_t type);
41
42 #ifdef __cplusplus
43 }
44 #endif