X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Flibhashkit%2Fstr_algorithm.cc;h=42007b22548291d1d627c59b1089cce10a185676;hb=ae093bfbe9693e50a368e29048d83c2f8f8422e7;hp=1a34653e28d07a683ca8b154cdd85bd1667e6e5f;hpb=1a82d708fca6b4c379dc035d05763ee80aae6d72;p=awesomized%2Flibmemcached diff --git a/src/libhashkit/str_algorithm.cc b/src/libhashkit/str_algorithm.cc index 1a34653e..42007b22 100644 --- a/src/libhashkit/str_algorithm.cc +++ b/src/libhashkit/str_algorithm.cc @@ -1,6 +1,6 @@ /* +--------------------------------------------------------------------+ - | libmemcached - C/C++ Client Library for memcached | + | libmemcached-awesome - C/C++ Client Library for memcached | +--------------------------------------------------------------------+ | Redistribution and use in source and binary forms, with or without | | modification, are permitted under the terms of the BSD license. | @@ -9,7 +9,7 @@ | the terms online at: https://opensource.org/licenses/BSD-3-Clause | +--------------------------------------------------------------------+ | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ | - | Copyright (c) 2020 Michael Wallner | + | Copyright (c) 2020-2021 Michael Wallner https://awesome.co/ | +--------------------------------------------------------------------+ */ @@ -17,19 +17,32 @@ const char *libhashkit_string_hash(hashkit_hash_algorithm_t type) { switch (type) { - case HASHKIT_HASH_DEFAULT: return "DEFAULT"; - case HASHKIT_HASH_MD5: return "MD5"; - case HASHKIT_HASH_CRC: return "CRC"; - case HASHKIT_HASH_FNV1_64: return "FNV1_64"; - case HASHKIT_HASH_FNV1A_64: return "FNV1A_64"; - case HASHKIT_HASH_FNV1_32: return "FNV1_32"; - case HASHKIT_HASH_FNV1A_32: return "FNV1A_32"; - case HASHKIT_HASH_HSIEH: return "HSIEH"; - case HASHKIT_HASH_MURMUR: return "MURMUR"; - case HASHKIT_HASH_MURMUR3: return "MURMUR3"; - case HASHKIT_HASH_JENKINS: return "JENKINS"; - case HASHKIT_HASH_CUSTOM: return "CUSTOM"; + case HASHKIT_HASH_DEFAULT: + return "DEFAULT"; + case HASHKIT_HASH_MD5: + return "MD5"; + case HASHKIT_HASH_CRC: + return "CRC"; + case HASHKIT_HASH_FNV1_64: + return "FNV1_64"; + case HASHKIT_HASH_FNV1A_64: + return "FNV1A_64"; + case HASHKIT_HASH_FNV1_32: + return "FNV1_32"; + case HASHKIT_HASH_FNV1A_32: + return "FNV1A_32"; + case HASHKIT_HASH_HSIEH: + return "HSIEH"; + case HASHKIT_HASH_MURMUR: + return "MURMUR"; + case HASHKIT_HASH_MURMUR3: + return "MURMUR3"; + case HASHKIT_HASH_JENKINS: + return "JENKINS"; + case HASHKIT_HASH_CUSTOM: + return "CUSTOM"; default: - case HASHKIT_HASH_MAX: return "INVALID"; + case HASHKIT_HASH_MAX: + return "INVALID"; } }