X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached-1.0%2Fstruct%2Fmemcached.h;h=138f9ef9ea623e9c88bc5fcd6ee90d1a07298702;hb=7d698ad128550cb4d2e3a60c83533c4370efd106;hp=152f310330c8402428df3500a5a39731372c2269;hpb=6e50e7a48d1230946aa73d42d47e89307d716b6b;p=awesomized%2Flibmemcached diff --git a/libmemcached-1.0/struct/memcached.h b/libmemcached-1.0/struct/memcached.h index 152f3103..138f9ef9 100644 --- a/libmemcached-1.0/struct/memcached.h +++ b/libmemcached-1.0/struct/memcached.h @@ -54,7 +54,7 @@ struct memcached_st { bool buffer_requests:1; bool hash_with_namespace:1; bool no_block:1; // Don't block - bool no_reply:1; + bool reply:1; bool randomize_replica_read:1; bool support_cas:1; bool tcp_nodelay:1; @@ -62,6 +62,7 @@ struct memcached_st { bool use_udp:1; bool verify_key:1; bool tcp_keepalive:1; + bool is_aes:1; } flags; memcached_server_distribution_t distribution; @@ -70,8 +71,8 @@ struct memcached_st { unsigned int version; } server_info; uint32_t number_of_hosts; - memcached_server_st *servers; - memcached_server_st *last_disconnected_server; + struct memcached_instance_st *servers; + struct memcached_instance_st *last_disconnected_server; int32_t snd_timeout; int32_t rcv_timeout; uint32_t server_failure_limit; @@ -82,6 +83,7 @@ struct memcached_st { int32_t poll_timeout; int32_t connect_timeout; // How long we will wait on connect() before we will timeout int32_t retry_timeout; + int32_t dead_timeout; int send_size; int recv_size; void *user_data;