memcached.h | memcached.h | |||
---|---|---|---|---|
skipping to change at line 74 | skipping to change at line 74 | |||
bool is_time_for_rebuild:1; | bool is_time_for_rebuild:1; | |||
} state; | } state; | |||
struct { | struct { | |||
// Everything below here is pretty static. | // Everything below here is pretty static. | |||
bool auto_eject_hosts:1; | bool auto_eject_hosts:1; | |||
bool binary_protocol:1; | bool binary_protocol:1; | |||
bool buffer_requests:1; | bool buffer_requests:1; | |||
bool cork:1; | bool cork:1; | |||
bool hash_with_prefix_key:1; | bool hash_with_prefix_key:1; | |||
bool ketama_weighted:1; | bool ketama_weighted:1; | |||
bool no_block:1; | bool no_block:1; // Don't block | |||
bool no_reply:1; | bool no_reply:1; | |||
bool randomize_replica_read:1; | bool randomize_replica_read:1; | |||
bool reuse_memory:1; | bool reuse_memory:1; | |||
bool support_cas:1; | bool support_cas:1; | |||
bool tcp_nodelay:1; | bool tcp_nodelay:1; | |||
bool use_cache_lookups:1; | bool use_cache_lookups:1; | |||
bool use_sort_hosts:1; | bool use_sort_hosts:1; | |||
bool use_udp:1; | bool use_udp:1; | |||
bool verify_key:1; | bool verify_key:1; | |||
bool tcp_keepalive:1; | bool tcp_keepalive:1; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
memcached_util.h | memcached_util.h | |||
---|---|---|---|---|
/* LibMemcached | /* LibMemcached | |||
* Copyright (C) 2006-2009 Brian Aker | * Copyright (C) 2006-2009 Brian Aker | |||
* All rights reserved. | * All rights reserved. | |||
* | * | |||
* Use and distribution licensed under the BSD license. See | * Use and distribution licensed under the BSD license. See | |||
* the COPYING file in the parent directory for full text. | * the COPYING file in the parent directory for full text. | |||
* | * | |||
* Summary: Connection pool library. | * Summary: Connection pool library. | |||
* | * | |||
* Author: Trond Norbye | * Author: Trond Norbye, Brian Aker | |||
* | * | |||
*/ | */ | |||
#ifndef __LIBMEMCACHED__MEMCACHED_UTIL_H__ | #ifndef __LIBMEMCACHED__MEMCACHED_UTIL_H__ | |||
#define __LIBMEMCACHED__MEMCACHED_UTIL_H__ | #define __LIBMEMCACHED__MEMCACHED_UTIL_H__ | |||
#include <libmemcached/util/ping.h> | ||||
#include <libmemcached/util/pool.h> | #include <libmemcached/util/pool.h> | |||
#include <libmemcached/util/version.h> | ||||
#endif /* __LIBMEMCACHED__MEMCACHED_UTIL_H__ */ | #endif /* __LIBMEMCACHED__MEMCACHED_UTIL_H__ */ | |||
End of changes. 3 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added | |||