Updates for libmemached to use libhashkit
[awesomized/libmemcached] / libhashkit / types.h
index fadb4d939322704d3955830c019951466afe056b..b2e5f798d0827fa3a97ef272975ea287de859e5e 100644 (file)
@@ -32,6 +32,7 @@ typedef enum {
   HASHKIT_HASH_HSIEH,
   HASHKIT_HASH_MURMUR,
   HASHKIT_HASH_JENKINS,
+  HASHKIT_HASH_CUSTOM,
   HASHKIT_HASH_MAX
 } hashkit_hash_algorithm_t;
 
@@ -48,7 +49,7 @@ typedef enum
 
 
 typedef struct hashkit_st hashkit_st;
-typedef uint32_t (*hashkit_hash_fn)(const char *key, size_t key_length);
+typedef uint32_t (*hashkit_hash_fn)(const char *key, size_t key_length, void *context);
 
 #ifdef __cplusplus
 }