X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached-1.0%2Fstruct%2Fserver.h;h=a1ed738974c1fad07851fe69fa9487f78ace4326;hb=16727efd684309de458393e10b47f1e354aa3616;hp=183b37393226afb9629eea876a68d08782a4b577;hpb=9169cee9ec0f231b3117a0d5a7840d2067f29610;p=m6w6%2Flibmemcached diff --git a/libmemcached-1.0/struct/server.h b/libmemcached-1.0/struct/server.h index 183b3739..a1ed7389 100644 --- a/libmemcached-1.0/struct/server.h +++ b/libmemcached-1.0/struct/server.h @@ -48,6 +48,12 @@ #define MEMCACHED_NI_MAXHOST 1025 #endif +#ifdef NI_MAXSERV +#define MEMCACHED_NI_MAXSERV NI_MAXSERV +#else +#define MEMCACHED_NI_MAXSERV 32 +#endif + enum memcached_server_state_t { MEMCACHED_SERVER_STATE_NEW, // fd == -1, no address lookup has been done MEMCACHED_SERVER_STATE_ADDRINFO, // ADDRRESS information has been gathered @@ -76,9 +82,10 @@ struct memcached_server_st { struct { uint32_t read; uint32_t write; + uint32_t timeouts; } io_wait_count; uint8_t major_version; // Default definition of UINT8_MAX means that it has not been set. - uint8_t micro_version; // ditto + uint8_t micro_version; // ditto, and note that this is the third, not second version bit uint8_t minor_version; // ditto memcached_connection_t type; char *read_ptr;