X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fcommon.h;h=49d309c8759ed0a2a8e7f2f788bb2b03eda02203;hb=647f5b82467172c55e456b6833d4c2f0bdc0bc5a;hp=40f45111826a9f840212990c67f72b10941a5305;hpb=7bbdcadb9f09dcc09124e3b6d61d3699cf21176b;p=m6w6%2Flibmemcached diff --git a/libmemcached/common.h b/libmemcached/common.h index 40f45111..49d309c8 100644 --- a/libmemcached/common.h +++ b/libmemcached/common.h @@ -66,6 +66,7 @@ #include #include #include +#include #ifdef __cplusplus extern "C" { @@ -91,7 +92,11 @@ memcached_return_t memcached_server_execute(memcached_st *ptr, #include #include #include +#ifdef __cplusplus +#include +#include #include +#endif #include #include #include @@ -99,7 +104,12 @@ memcached_return_t memcached_server_execute(memcached_st *ptr, #include #include #include -#include +#include + +#ifdef __cplusplus +#include +#include +#endif /* string value */ struct memcached_continuum_item_st @@ -141,37 +151,46 @@ memcached_return_t run_distribution(memcached_st *ptr); LIBMEMCACHED_LOCAL void set_last_disconnected_host(memcached_server_write_instance_st ptr); +#ifdef __cplusplus LIBMEMCACHED_LOCAL -memcached_return_t memcached_key_test(const char * const *keys, +memcached_return_t memcached_key_test(const memcached_st& memc, + const char * const *keys, const size_t *key_length, size_t number_of_keys); +#endif LIBMEMCACHED_LOCAL memcached_return_t memcached_purge(memcached_server_write_instance_st ptr); LIBMEMCACHED_LOCAL -memcached_server_st *memcached_server_create_with(const memcached_st *memc, - memcached_server_write_instance_st host, - const char *hostname, - in_port_t port, - uint32_t weight, - memcached_connection_t type); + memcached_server_st *__server_create_with(const memcached_st *memc, + memcached_server_write_instance_st host, + const char *hostname, + in_port_t port, + uint32_t weight, + memcached_connection_t type); static inline memcached_return_t memcached_validate_key_length(size_t key_length, bool binary) { - unlikely (key_length == 0) + if (key_length == 0) + { return MEMCACHED_BAD_KEY_PROVIDED; + } if (binary) { - unlikely (key_length > 0xffff) + if (key_length > 0xffff) + { return MEMCACHED_BAD_KEY_PROVIDED; + } } else { - unlikely (key_length >= MEMCACHED_MAX_KEY) + if (key_length >= MEMCACHED_MAX_KEY) + { return MEMCACHED_BAD_KEY_PROVIDED; + } } return MEMCACHED_SUCCESS;