prepare v1.1.4
[awesomized/libmemcached] / src / libhashkit / strerror.cc
1 /*
2 +--------------------------------------------------------------------+
3 | libmemcached-awesome - 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-2021 Michael Wallner https://awesome.co/ |
13 +--------------------------------------------------------------------+
14 */
15
16 #include "libhashkit/common.h"
17
18 const char *hashkit_strerror(hashkit_st *ptr, hashkit_return_t rc) {
19 (void) ptr;
20 switch (rc) {
21 case HASHKIT_SUCCESS:
22 return "SUCCESS";
23 case HASHKIT_FAILURE:
24 return "FAILURE";
25 case HASHKIT_MEMORY_ALLOCATION_FAILURE:
26 return "MEMORY ALLOCATION FAILURE";
27 case HASHKIT_INVALID_ARGUMENT:
28 return "INVALID ARGUMENT";
29 case HASHKIT_INVALID_HASH:
30 return "INVALID hashkit_hash_algorithm_t";
31 case HASHKIT_MAXIMUM_RETURN:
32 default:
33 return "INVALID hashkit_return_t";
34 }
35 }