X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached.h;h=193eb33c723f8300c5102e962b7f0f31ada1b73a;hb=3dee67d04099cc5e2986ed94aa612f429f54d6fb;hp=26f101f2ea81d75f2924237fa12d73b783c8e6ff;hpb=96c84d98b1b2db8419072eea960e8800c189586b;p=awesomized%2Flibmemcached diff --git a/libmemcached/memcached.h b/libmemcached/memcached.h index 26f101f2..193eb33c 100644 --- a/libmemcached/memcached.h +++ b/libmemcached/memcached.h @@ -14,8 +14,6 @@ #define __LIBMEMCACHED_MEMCACHED_H__ #include -#include -#include #include #include @@ -26,9 +24,12 @@ #include #include +#include #include #include #include +#include +#include #include #include // Everything above this line must be in the order specified. @@ -44,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -72,7 +74,7 @@ struct memcached_st { bool cork:1; bool hash_with_prefix_key:1; bool ketama_weighted:1; - bool no_block:1; + bool no_block:1; // Don't block bool no_reply:1; bool randomize_replica_read:1; bool reuse_memory:1; @@ -83,6 +85,7 @@ struct memcached_st { bool use_udp:1; bool verify_key:1; bool tcp_keepalive:1; + bool ping_service:1; } flags; memcached_server_distribution_t distribution; hashkit_st hashkit; @@ -106,7 +109,6 @@ struct memcached_st { int recv_size; void *user_data; time_t next_distribution_rebuild; // Ketama - size_t prefix_key_length; uint32_t number_of_replicas; hashkit_st distribution_hashkit; memcached_result_st result; @@ -125,8 +127,12 @@ struct memcached_st { memcached_trigger_key_fn get_key_failure; memcached_trigger_delete_key_fn delete_trigger; memcached_callback_st *callbacks; - struct memcached_sasl_st *sasl; - char prefix_key[MEMCACHED_PREFIX_KEY_MAX_SIZE]; + struct memcached_sasl_st sasl; + struct memcached_error_st *error_messages; + struct memcached_array_st *prefix_key; + struct { + struct memcached_array_st *filename; + } configure; struct { bool is_allocated:1; } options; @@ -143,9 +149,15 @@ void memcached_servers_reset(memcached_st *ptr); LIBMEMCACHED_API memcached_st *memcached_create(memcached_st *ptr); +LIBMEMCACHED_API +memcached_st *memcached_create_with_options(const char *string, size_t length); + LIBMEMCACHED_API void memcached_free(memcached_st *ptr); +LIBMEMCACHED_API +memcached_return_t memcached_reset(memcached_st *ptr); + LIBMEMCACHED_API void memcached_reset_last_disconnected_server(memcached_st *ptr);