Style cleanup.
authorBrian Aker <brian@gaz>
Thu, 21 Jan 2010 23:45:12 +0000 (15:45 -0800)
committerBrian Aker <brian@gaz>
Thu, 21 Jan 2010 23:45:12 +0000 (15:45 -0800)
36 files changed:
libhashkit/hashkit.h
libmemcached/allocators.h
libmemcached/analyze.h
libmemcached/auto.h
libmemcached/behavior.h
libmemcached/byteorder.h
libmemcached/callback.h
libmemcached/common.h
libmemcached/configure.h.in
libmemcached/constants.h
libmemcached/delete.h
libmemcached/dump.h
libmemcached/fetch.h
libmemcached/flush.h
libmemcached/flush_buffers.h
libmemcached/get.h
libmemcached/internal.h
libmemcached/io.h
libmemcached/libmemcached_probes.h
libmemcached/memcached.h
libmemcached/memcached_util.h
libmemcached/parse.h
libmemcached/protocol_handler.h
libmemcached/quit.h
libmemcached/response.h
libmemcached/result.h
libmemcached/server.h
libmemcached/stats.h
libmemcached/storage.h
libmemcached/strerror.h
libmemcached/string.h
libmemcached/types.h
libmemcached/verbosity.h
libmemcached/version.h
libmemcached/visibility.h
libmemcached/watchpoint.h

index 8b7985ac6050cd6b2684af82f51adcc0a101dd68..5f19f9d34af3221da3a6f564f5a076940eb038ce 100644 (file)
@@ -86,6 +86,7 @@ struct hashkit_st
 
   hashkit_st& operator=(const hashkit_st& source)
   { 
+    hashkit_free(this);
     hashkit_clone(this, &source);
 
     return *this;
index c87cd2ec42486295104270b3d8445e6662483817..b525e9016cbdf16799dadf4ee6986640e553a603 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_ALLOCATORS_H__
-#define __MEMCACHED_ALLOCATORS_H__
+#ifndef __LIBMEMCACHED_ALLOCATORS_H__
+#define __LIBMEMCACHED_ALLOCATORS_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -49,9 +49,8 @@ void *_libmemcached_calloc(const memcached_st *ptr, size_t nelem, size_t size, v
 LIBMEMCACHED_LOCAL
 struct _allocators_st memcached_allocators_return_default(void);
 
-
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* __MEMCACHED_ALLOCATORS_H__ */
+#endif /* __LIBMEMCACHED_ALLOCATORS_H__ */
index dbec8b236098c694915e1338f4b7fd817c2171ab..4a8128bd14fd1ab13cc0496d2c73e789615aec9c 100644 (file)
@@ -9,13 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_ANALYZE_H__
-#define __MEMCACHED_ANALYZE_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
+#ifndef __LIBMEMCACHED_ANALYZE_H__
+#define __LIBMEMCACHED_ANALYZE_H__
 
 struct memcached_analysis_st {
   memcached_st *root;
@@ -29,6 +24,9 @@ struct memcached_analysis_st {
   uint64_t least_remaining_bytes;
 };
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 LIBMEMCACHED_API
 memcached_analysis_st *memcached_analyze(memcached_st *memc,
@@ -42,4 +40,4 @@ void memcached_analyze_free(memcached_analysis_st *);
 }
 #endif
 
-#endif /* __MEMCACHED_ANALYZE_H__ */
+#endif /* __LIBMEMCACHED_ANALYZE_H__ */
index c80d0bd012f3d4eee58c86486dc9a3ab542c97c5..227be9df040930199a100cf2bae62f8b9d384ef8 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_AUTO_H__
-#define __MEMCACHED_AUTO_H__
+#ifndef __LIBMEMCACHED_AUTO_H__
+#define __LIBMEMCACHED_AUTO_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -82,4 +82,4 @@ memcached_return_t memcached_decrement_with_initial_by_key(memcached_st *ptr,
 }
 #endif
 
-#endif /* __MEMCACHED_AUTO_H__ */
+#endif /* __LIBMEMCACHED_AUTO_H__ */
index 7a00873124a99127bdb2645ab67a30078022d6d6..1bc51b7d80465bbcdf957185ec24b06cb21cd11d 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_BEHAVIOR_H__
-#define __MEMCACHED_BEHAVIOR_H__
+#ifndef __LIBMEMCACHED_BEHAVIOR_H__
+#define __LIBMEMCACHED_BEHAVIOR_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -45,4 +45,4 @@ memcached_hash_t memcached_behavior_get_distribution_hash(memcached_st *ptr);
 }
 #endif
 
-#endif /* __MEMCACHED_BEHAVIOR_H__ */
+#endif /* __LIBMEMCACHED_BEHAVIOR_H__ */
index 17e66a78f59e0d52ee235b9a08dc53af26cd618e..df47cc691e86fbdfc1a056a22242d630d2bd1d0a 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef LIBMEMCACHED_BYTEORDER_H
-#define LIBMEMCACHED_BYTEORDER_H
+#ifndef __LIBMEMCACHED_BYTEORDER_H__
+#define __LIBMEMCACHED_BYTEORDER_H__
 
 #include "config.h"
 
@@ -40,4 +40,4 @@ uint64_t htonll(uint64_t);
 #undef htonl
 #endif
 
-#endif /* LIBMEMCACHED_BYTEORDER_H */
+#endif /*__LIBMEMCACHED_BYTEORDER_H__ */
index de64a1996eb1a72152eac30af7c1c863145ab198..4c3a95f4ff270004250c49df212e4a21561a5ba2 100644 (file)
@@ -9,8 +9,14 @@
  *
  */
 
-#ifndef __MEMCACHED_CALLBACK_H__
-#define __MEMCACHED_CALLBACK_H__
+#ifndef __LIBMEMCACHED_CALLBACK_H__
+#define __LIBMEMCACHED_CALLBACK_H__
+
+struct memcached_callback_st {
+  memcached_execute_fn *callback;
+  void *context;
+  uint32_t number_of_callback;
+};
 
 #ifdef __cplusplus
 extern "C" {
@@ -29,4 +35,4 @@ void *memcached_callback_get(memcached_st *ptr,
 }
 #endif
 
-#endif /* __MEMCACHED_CALLBACK_H__ */
+#endif /* __LIBMEMCACHED_CALLBACK_H__ */
index 1e1db2f5e0dd2028c8f9a589a34bf19080a3bc3d..c1cd0d8dc0316b4ca6c78e352b42529ec3c54d12 100644 (file)
@@ -13,8 +13,8 @@
   Common include file for libmemached
 */
 
-#ifndef LIBMEMCACHED_COMMON_H
-#define LIBMEMCACHED_COMMON_H
+#ifndef __LIBMEMCACHED_COMMON_H__
+#define __LIBMEMCACHED_COMMON_H__
 
 #include "config.h"
 
@@ -95,6 +95,10 @@ typedef enum {
 #define SMALL_STRING_LEN 1024
 #define HUGE_STRING_LEN 8196
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 LIBMEMCACHED_LOCAL
 memcached_return_t memcached_connect(memcached_server_instance_st *ptr);
 LIBMEMCACHED_LOCAL
@@ -217,5 +221,8 @@ static inline void *libmemcached_calloc(const memcached_st *ptr, size_t nelem, s
   return ptr->allocators.calloc(ptr, nelem, size, ptr->allocators.context);
 }
 
+#ifdef __cplusplus
+}
+#endif
 
-#endif /* LIBMEMCACHED_COMMON_H */
+#endif /* __LIBMEMCACHED_COMMON_H__ */
index c4301df931ef61e646a29b9f346cb5fa5dd0e67c..17ec8645865cda3592e1ece3f1cd4ea9370fcd6e 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef MEMCACHED_CONFIGURE_H
-#define MEMCACHED_CONFIGURE_H
+#ifndef __LIBMEMCACHED_CONFIGURE_H
+#define __LIBMEMCACHED_CONFIGURE_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -25,4 +25,4 @@ extern "C" {
 }
 #endif
 
-#endif /* MEMCACHED_CONFIGURE_H */
+#endif /* __LIBMEMCACHED_CONFIGURE_H */
index ab210c3c3ed4c233cdf0606a3f24e1041224f0b0..561f00c4c3e5f46cde426954b96ee676fadd2229 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_CONSTANTS_H__
-#define __MEMCACHED_CONSTANTS_H__
+#ifndef __LIBMEMCACHED_CONSTANTS_H__
+#define __LIBMEMCACHED_CONSTANTS_H__
 
 /* Public defines */
 #define MEMCACHED_DEFAULT_PORT 11211
@@ -157,4 +157,4 @@ typedef enum {
   MEMCACHED_CONNECTION_MAX
 } memcached_connection_t;
 
-#endif /* __MEMCACHED_CONSTANTS_H__ */
+#endif /* __LIBMEMCACHED_CONSTANTS_H__ */
index 1992ac36fbfbd93c75798d23270cd13b51f48532..54736c0e2aa185b7c6b37a848cf6eec74a0204de 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_DELETE_H__
-#define __MEMCACHED_DELETE_H__
+#ifndef __LIBMEMCACHED_DELETE_H__
+#define __LIBMEMCACHED_DELETE_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -30,4 +30,4 @@ memcached_return_t memcached_delete_by_key(memcached_st *ptr,
 }
 #endif
 
-#endif /* __MEMCACHED_DELETE_H__ */
+#endif /* __LIBMEMCACHED_DELETE_H__ */
index 3b3d11df205d0a65560fdfab2db80016e9dc816d..6fcdb25764cff0052c2d6eaba5a3e6e9fa01e937 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_DUMP_H__
-#define __MEMCACHED_DUMP_H__
+#ifndef __LIBMEMCACHED_DUMP_H__
+#define __LIBMEMCACHED_DUMP_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -24,4 +24,4 @@ memcached_return_t memcached_dump(memcached_st *ptr, memcached_dump_fn *function
 }
 #endif
 
-#endif /* __MEMCACHED_DUMP_H__ */
+#endif /* __LIBMEMCACHED_DUMP_H__ */
index cd12d384099a23b13dbf1ce5a9efe64874bee1da..353cca5ee67ad26c40359eeb7cbad63c920db9ec 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_FETCH_H__
-#define __MEMCACHED_FETCH_H__
+#ifndef __LIBMEMCACHED_FETCH_H__
+#define __LIBMEMCACHED_FETCH_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -26,4 +26,4 @@ memcached_return_t memcached_fetch_execute(memcached_st *ptr,
 }
 #endif
 
-#endif /* __MEMCACHED_FETCH_H__ */
+#endif /* __LIBMEMCACHED_FETCH_H__ */
index dd2f5aefda93084609c4443101b5723262507bee..36c0759899a6d18af9cbf74a29c345459532e8ca 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_FLUSH_H__
-#define __MEMCACHED_FLUSH_H__
+#ifndef __LIBMEMCACHED_FLUSH_H__
+#define __LIBMEMCACHED_FLUSH_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -23,4 +23,4 @@ memcached_return_t memcached_flush(memcached_st *ptr, time_t expiration);
 }
 #endif
 
-#endif /* __MEMCACHED_FLUSH_H__ */
+#endif /* __LIBMEMCACHED_FLUSH_H__ */
index a7d1e19a48a915cdc28ac1ccf3f6ccf488394514..88d8a81c2508bc1bb5118e894ba7fe5eaaf1404a 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_FLUSH_BUFFERS_H__
-#define __MEMCACHED_FLUSH_BUFFERS_H__
+#ifndef __LIBMEMCACHED_FLUSH_BUFFERS_H__
+#define __LIBMEMCACHED_FLUSH_BUFFERS_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -23,4 +23,4 @@ memcached_return_t memcached_flush_buffers(memcached_st *mem);
 }
 #endif
 
-#endif /* __MEMCACHED_FLUSH_BUFFERS_H__ */
+#endif /* __LIBMEMCACHED_FLUSH_BUFFERS_H__ */
index 2e5b2f991a7c6dc84c978980a82fbc9c8ca154dd..a6d6b264498e79e102b456fa66548ccc6a9c23af 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef LIBMEMCACHED_MEMCACHED_GET_H
-#define LIBMEMCACHED_MEMCACHED_GET_H
+#ifndef __LIBMEMCACHED_GET_H__
+#define __LIBMEMCACHED_GET_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -83,4 +83,4 @@ memcached_return_t memcached_mget_execute_by_key(memcached_st *ptr,
 }
 #endif
 
-#endif /* LIBMEMCACHED_MEMCACHED_GET_H */
+#endif /* __LIBMEMCACHED_GET_H__ */
index a02a30de91206da6c65eb86444834d155ef2a21a..743bf870afdf48acbe407ecd6f8c6d30aa49eb5d 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef LIBMEMCACHED_MEMCACHED_INTERNAL_H
-#define LIBMEMCACHED_MEMCACHED_INTERNAL_H
+#ifndef __LIBMEMCACHED_INTERNAL_H__
+#define __LIBMEMCACHED_INTERNAL_H__
 
 #if defined(BUILDING_LIBMEMCACHED)
 
@@ -23,4 +23,4 @@ extern "C" {
 #endif
 
 #endif /* BUILDING_LIBMEMCACHED */
-#endif /* LIBMEMCACHED_MEMCACHED_INTERNAL_H */
+#endif /* __LIBMEMCACHED_INTERNAL_H__ */
index df7708c846c20461ceef81519f16a3e59b0d7df6..5530d146709989c5524e069293667c8f5f7b53c3 100644 (file)
@@ -9,17 +9,17 @@
  *
  */
 
-#ifndef LIBMEMCACHED_MEMCACHED_IO_H
-#define LIBMEMCACHED_MEMCACHED_IO_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
+#ifndef __LIBMEMCACHED_IO_H__
+#define __LIBMEMCACHED_IO_H__
 
 #if defined(BUILDING_LIBMEMCACHED)
 
 #include "libmemcached/memcached.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #define MAX_UDP_DATAGRAM_LENGTH 1400
 #define UDP_DATAGRAM_HEADER_LENGTH 8
 #define UDP_REQUEST_ID_MSG_SIG_DIGITS 10
@@ -73,10 +73,10 @@ memcached_return_t memcached_io_init_udp_header(memcached_server_instance_st *pt
 LIBMEMCACHED_LOCAL
 memcached_server_instance_st *memcached_io_get_readable_server(memcached_st *memc);
 
-#endif /* BUILDING_LIBMEMCACHED */
-
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* LIBMEMCACHED_MEMCACHED_IO_H */
+#endif /* BUILDING_LIBMEMCACHED */
+
+#endif /* __LIBMEMCACHED_IO_H__ */
index ddc9ef4793198b587f55177c34117d680974d440..46f8a21f2074029efa18a42a0d71bd7dab4cf399 100644 (file)
@@ -15,8 +15,8 @@
  * implementation of the following macros to create your own sort of
  * probing :)
  */
-#ifndef        LIBMEMCACHED_PROBES_H
-#define        LIBMEMCACHED_PROBES_H
+#ifndef        __LIBMEMCACHED_PROBES_H__
+#define        __LIBMEMCACHED_PROBES_H__
 
 #ifdef HAVE_DTRACE
 /*
@@ -86,4 +86,4 @@
 
 #endif
 
-#endif /* LIBMEMCACHED_PROBES_H */
+#endif /* __LIBMEMCACHED_PROBES_H__ */
index 62d3b1dc58669dffe38a7603a90765f857408e2b..5b92d6356d6ea2d3c31a38d8ed461e88bf6aba3e 100644 (file)
@@ -10,8 +10,8 @@
  *
  */
 
-#ifndef __MEMCACHED_H__
-#define __MEMCACHED_H__
+#ifndef __LIBMEMCACHED_MEMCACHED_H__
+#define __LIBMEMCACHED_MEMCACHED_H__
 
 #include <stdlib.h>
 #include <inttypes.h>
@@ -74,6 +74,10 @@ void *memcached_get_user_data(const memcached_st *ptr);
 LIBMEMCACHED_API
 void *memcached_set_user_data(memcached_st *ptr, void *data);
 
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
 
 struct memcached_st {
   /**
@@ -237,6 +241,7 @@ struct memcached_st {
 
   memcached_st& operator=(const memcached_st& source)
   { 
+    memcached_free(this);
     memcached_clone(this, &source);
 
     return *this;
@@ -245,16 +250,11 @@ struct memcached_st {
 #endif
 };
 
+
 // Local Only Inline
 static inline memcached_server_st *memcached_server_instance_fetch(memcached_st *ptr, uint32_t server_key)
 {
   return &ptr->servers[server_key];
 }
 
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-
-#endif /* __MEMCACHED_H__ */
+#endif /* __LIBMEMCACHED_MEMCACHED_H__ */
index 0c2c6777e56136ceabaa030f082943572cd1fb78..a20b665b4bdd8df9c383db2eeb4f683e7043c0d5 100644 (file)
@@ -12,9 +12,9 @@
  */
 
 
-#ifndef MEMCACHED_UTIL_H
-#define MEMCACHED_UTIL_H
+#ifndef __LIBMEMCACHED__MEMCACHED_UTIL_H__
+#define __LIBMEMCACHED__MEMCACHED_UTIL_H__
 
 #include <libmemcached/util/pool.h>
 
-#endif /* MEMCACHED_UTIL_H */
+#endif /* __LIBMEMCACHED__MEMCACHED_UTIL_H__ */
index d3a08f1abb540db8038a8f4b58a9e0e6c0846151..9409d454ba1f7dc84bd350923709249c5030857d 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_PARSE_H__
-#define __MEMCACHED_PARSE_H__
+#ifndef __LIBMEMCACHED_PARSE_H__
+#define __LIBMEMCACHED_PARSE_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -23,4 +23,4 @@ memcached_server_st *memcached_servers_parse(const char *server_strings);
 }
 #endif
 
-#endif /* __MEMCACHED_PARSE_H__ */
+#endif /* __LIBMEMCACHED_PARSE_H__ */
index 3e4531bb5307a418e76806e756f8516e399db874..78eda07745a4d86a55b214d8d49c905bfe1b3b56 100644 (file)
@@ -11,8 +11,8 @@
  *
  */
 
-#ifndef MEMCACHED_PROTOCOL_H
-#define MEMCACHED_PROTOCOL_H
+#ifndef __LIBMEMCACHED_PROTOCOL_H__
+#define __LIBMEMCACHED_PROTOCOL_H__
 
 #include <sys/types.h>
 #if !defined(__cplusplus)
 typedef struct memcached_protocol_st memcached_protocol_st;
 typedef struct memcached_protocol_client_st memcached_protocol_client_st;
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
  * Function the protocol handler should call to receive data.
  * This function should behave exactly like read(2)
@@ -205,4 +209,9 @@ int memcached_protocol_client_get_errno(memcached_protocol_client_st *client);
  */
 LIBMEMCACHED_API
 memcached_binary_protocol_raw_response_handler memcached_binary_protocol_get_raw_response_handler(const void *cookie);
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif
index 7b98427f0f0f8125950390c8d83b529edb9458c6..453adeaa969126e67bedf045d29f499490122dff 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_QUIT_H__
-#define __MEMCACHED_QUIT_H__
+#ifndef __LIBMEMCACHED_QUIT_H__
+#define __LIBMEMCACHED_QUIT_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -23,4 +23,4 @@ void memcached_quit(memcached_st *ptr);
 }
 #endif
 
-#endif /* __MEMCACHED_QUIT_H__ */
+#endif /* __LIBMEMCACHED_QUIT_H__ */
index d6168f87c0cb4a90a990f99e0adf3192ac24810d..6599b8a7e945c71b144dc9bd6c7b92acb6030377 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_RESPONSE_H__
-#define __MEMCACHED_RESPONSE_H__
+#ifndef __LIBMEMCACHED_RESPONSE_H__
+#define __LIBMEMCACHED_RESPONSE_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -31,4 +31,4 @@ memcached_return_t memcached_response(memcached_server_instance_st *ptr,
 }
 #endif
 
-#endif /* __MEMCACHED_RESPONSE_H__ */
+#endif /* __LIBMEMCACHED_RESPONSE_H__ */
index 5e7bb69d3f019d2a26c412fb3f3ea5847bc0dd53..ea057569f4b90ffa68f93dc248b22e04f50d8dab 100644 (file)
@@ -9,12 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_RESULT_H__
-#define __MEMCACHED_RESULT_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
+#ifndef __LIBMEMCACHED_RESULT_H__
+#define __LIBMEMCACHED_RESULT_H__
 
 struct memcached_result_st {
   uint32_t item_flags;
@@ -31,6 +27,10 @@ struct memcached_result_st {
   /* Add result callback function */
 };
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /* Result Struct */
 LIBMEMCACHED_API
 void memcached_result_free(memcached_result_st *result);
@@ -88,7 +88,8 @@ static inline void memcached_result_set_expiration(memcached_result_st *self, ti
 }
 
 #ifdef __cplusplus
-}
+} // extern "C"
 #endif
 
-#endif /* __MEMCACHED_RESULT_H__ */
+
+#endif /* __LIBMEMCACHED_RESULT_H__ */
index d1a1cdacad5211549da66e835ae23b39819728cf..76400ee3838026c75a3a9babf95bdb6ea0a5db75 100644 (file)
@@ -9,12 +9,9 @@
  *
  */
 
-#ifndef __MEMCACHED_SERVER_H__
-#define __MEMCACHED_SERVER_H__
+#ifndef __LIBMEMCACHED_SERVER_H__
+#define __LIBMEMCACHED_SERVER_H__
 
-#ifdef __cplusplus
-extern "C" {
-#endif
 
 struct memcached_server_st {
   struct {
@@ -51,26 +48,10 @@ struct memcached_server_st {
   char hostname[MEMCACHED_MAX_HOST_LENGTH];
 };
 
-// Local Only Inline
-static inline uint32_t memcached_servers_count(memcached_server_st *servers)
-{
-  return servers->number_of_hosts;
-}
 
-// Local Only Inline
-static inline uint32_t memcached_servers_set_count(memcached_server_st *servers, uint32_t count)
-{
-  return servers->number_of_hosts= count;
-}
-
-
-
-#define memcached_server_count(A) (A)->number_of_hosts
-#define memcached_server_name(A,B) (B).hostname
-#define memcached_server_port(A,B) (B).port
-#define memcached_server_list(A) (A)->servers
-#define memcached_server_list_set(A,B) (A)->servers=(B)
-#define memcached_server_response_count(A) (A)->cursor_active
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 LIBMEMCACHED_API
 memcached_return_t memcached_server_cursor(memcached_st *ptr,
@@ -163,9 +144,28 @@ memcached_server_st *memcached_server_list_append_with_weight(memcached_server_s
 LIBMEMCACHED_API
 unsigned int memcached_server_list_count(memcached_server_st *ptr);
 
+// Local Only Inline
+static inline uint32_t memcached_servers_count(memcached_server_st *servers)
+{
+  return servers->number_of_hosts;
+}
 
-#ifdef __cplusplus
+// Local Only Inline
+static inline uint32_t memcached_servers_set_count(memcached_server_st *servers, uint32_t count)
+{
+  return servers->number_of_hosts= count;
 }
+
+
+#define memcached_server_count(A) (A)->number_of_hosts
+#define memcached_server_name(A,B) (B).hostname
+#define memcached_server_port(A,B) (B).port
+#define memcached_server_list(A) (A)->servers
+#define memcached_server_list_set(A,B) (A)->servers=(B)
+#define memcached_server_response_count(A) (A)->cursor_active
+
+#ifdef __cplusplus
+} // extern "C"
 #endif
 
-#endif /* __MEMCACHED_SERVER_H__ */
+#endif /* __LIBMEMCACHED_SERVER_H__ */
index c7d554b2eafc69c958d003498dad9656d619b655..245f0711015f4f0f338927dddee2d6187745ebdb 100644 (file)
@@ -9,12 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_STATS_H__
-#define __MEMCACHED_STATS_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
+#ifndef __LIBMEMCACHED_STATS_H__
+#define __LIBMEMCACHED_STATS_H__
 
 struct memcached_stat_st {
   uint32_t connection_structures;
@@ -44,6 +40,10 @@ struct memcached_stat_st {
   memcached_st *root;
 };
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 LIBMEMCACHED_API
 void memcached_stat_free(memcached_st *, memcached_stat_st *);
 
@@ -63,7 +63,7 @@ char ** memcached_stat_get_keys(memcached_st *ptr, memcached_stat_st *memc_stat,
                                 memcached_return_t *error);
 
 #ifdef __cplusplus
-}
+} // extern "C"
 #endif
 
-#endif /* __MEMCACHED_STATS_H__ */
+#endif /* __LIBMEMCACHED_STATS_H__ */
index 8f2339677affce816c7830807099ebad02356c46..58edb4798176df60abbcf2d9f4370e820a31ef6a 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_STORAGE_H__
-#define __MEMCACHED_STORAGE_H__
+#ifndef __LIBMEMCACHED_STORAGE_H__
+#define __LIBMEMCACHED_STORAGE_H__
 
 #include "libmemcached/memcached.h"
 
@@ -107,4 +107,4 @@ memcached_return_t memcached_cas_by_key(memcached_st *ptr,
 }
 #endif
 
-#endif /* __MEMCACHED_STORAGE_H__ */
+#endif /* __LIBMEMCACHED_STORAGE_H__ */
index 064b6460fcd3ab217cd6989a1e4912c5ad5c0217..b2dc8c9af1063c86dd45472fef916930b2117bb8 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_STRERROR_H__
-#define __MEMCACHED_STRERROR_H__
+#ifndef __LIBMEMCACHED_STRERROR_H__
+#define __LIBMEMCACHED_STRERROR_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -23,4 +23,4 @@ const char *memcached_strerror(memcached_st *ptr, memcached_return_t rc);
 }
 #endif
 
-#endif /* __MEMCACHED_STRERROR_H__ */
+#endif /* __LIBMEMCACHED_STRERROR_H__ */
index 9e064d9ad117808475c6b7f692907101e841e6b2..168172ea70e5c489c8168d90abd2247ae2594c83 100644 (file)
@@ -9,12 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_STRING_H__
-#define __MEMCACHED_STRING_H__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
+#ifndef __LIBMEMCACHED_STRING_H__
+#define __LIBMEMCACHED_STRING_H__
 
 /**
   Strings are always under our control so we make some assumptions
@@ -37,27 +33,9 @@ struct memcached_string_st {
   } options;
 };
 
-static inline size_t memcached_string_length(const memcached_string_st *self)
-{
-  return (size_t)(self->end - self->string);
-}
-
-static inline size_t memcached_string_size(const memcached_string_st *self)
-{
-  return self->current_size;
-}
-
-static inline const char *memcached_string_value(const memcached_string_st *self)
-{
-  return self->string;
-}
-
-static inline char *memcached_string_value_mutable(const memcached_string_st *self)
-{
-  return self->string;
-}
-
-#define memcached_string_set_length(A, B) (A)->end= (A)->string + B
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 LIBMEMCACHED_LOCAL
 memcached_string_st *memcached_string_create(const memcached_st *ptr,
@@ -81,8 +59,31 @@ memcached_return_t memcached_string_reset(memcached_string_st *string);
 LIBMEMCACHED_LOCAL
 void memcached_string_free(memcached_string_st *string);
 
+static inline size_t memcached_string_length(const memcached_string_st *self)
+{
+  return (size_t)(self->end - self->string);
+}
+
+static inline size_t memcached_string_size(const memcached_string_st *self)
+{
+  return self->current_size;
+}
+
+static inline const char *memcached_string_value(const memcached_string_st *self)
+{
+  return self->string;
+}
+
+static inline char *memcached_string_value_mutable(const memcached_string_st *self)
+{
+  return self->string;
+}
+
+#define memcached_string_set_length(A, B) (A)->end= (A)->string + B
+
 #ifdef __cplusplus
 }
 #endif
 
-#endif /* __MEMCACHED_STRING_H__ */
+
+#endif /* __LIBMEMCACHED_STRING_H__ */
index 0c78eb30f6ee8d99bc4e5f93fc2f3900ccd68817..c262b58d94f8f68e5f9d46bb1b590cf31f13f5c8 100644 (file)
@@ -9,19 +9,17 @@
  *
  */
 
-#ifndef LIBMEMCACHED_MEMCACHED_TYPES_H
-#define LIBMEMCACHED_MEMCACHED_TYPES_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
+#ifndef __LIBMEMCACHED_TYPES_H__
+#define __LIBMEMCACHED_TYPES_H__
 
 typedef struct memcached_st memcached_st;
 typedef struct memcached_stat_st memcached_stat_st;
 typedef struct memcached_analysis_st memcached_analysis_st;
 typedef struct memcached_result_st memcached_result_st;
-typedef struct memcached_string_st memcached_string_st;
 typedef struct memcached_server_st memcached_server_st;
+typedef struct memcached_callback_st memcached_callback_st;
+
+typedef struct memcached_string_st memcached_string_st;
 typedef struct memcached_continuum_item_st memcached_continuum_item_st;
 
 typedef memcached_return_t (*memcached_clone_fn)(memcached_st *destination, const memcached_st *source);
@@ -52,12 +50,6 @@ typedef memcached_return_t (*memcached_dump_fn)(const memcached_st *ptr,
                                                 size_t key_length,
                                                 void *context);
 
-typedef struct {
-  memcached_execute_fn *callback;
-  void *context;
-  uint32_t number_of_callback;
-} memcached_callback_st;
-
  
 /**
   @note The following definitions are just here for backwards compatibility.
@@ -70,19 +62,10 @@ typedef memcached_hash_t memcached_hash;
 typedef memcached_connection_t memcached_connection;
 typedef memcached_clone_fn memcached_clone_func;
 typedef memcached_cleanup_fn memcached_cleanup_func;
-typedef memcached_free_fn memcached_free_function;
-typedef memcached_malloc_fn memcached_malloc_function;
-typedef memcached_realloc_fn memcached_realloc_function;
-typedef memcached_calloc_fn memcached_calloc_function;
 typedef memcached_execute_fn memcached_execute_function;
 typedef memcached_server_fn memcached_server_function;
 typedef memcached_trigger_key_fn memcached_trigger_key;
 typedef memcached_trigger_delete_key_fn memcached_trigger_delete_key;
 typedef memcached_dump_fn memcached_dump_func;
-
-#ifdef __cplusplus
-}
-#endif
 
-#endif /* LIBMEMCACHED_MEMCACHED_TYPES_H */
+#endif /* __LIBMEMCACHED_TYPES_H__ */
index 172ab9f673b48cacc9682e7dc9edd4adb5a5f1d3..b28458e43bb3416c458202998610be6909ff01bd 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_VERBOSITY_H__
-#define __MEMCACHED_VERBOSITY_H__
+#ifndef __LIBMEMCACHED_VERBOSITY_H__
+#define __LIBMEMCACHED_VERBOSITY_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -24,4 +24,4 @@ memcached_return_t memcached_verbosity(memcached_st *ptr, uint32_t verbosity);
 }
 #endif
 
-#endif /* __MEMCACHED_VERBOSITY_H__ */
+#endif /* __LIBMEMCACHED_VERBOSITY_H__ */
index 8df9f0ac3df031c77da817649b6d3d1c06ee0e68..7e6f607aa48591dc43c69bc595a603ffffe70cfb 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __MEMCACHED_VERSION_H__
-#define __MEMCACHED_VERSION_H__
+#ifndef __LIBMEMCACHED_VERSION_H__
+#define __LIBMEMCACHED_VERSION_H__
 
 #ifdef __cplusplus
 extern "C" {
@@ -26,4 +26,4 @@ const char * memcached_lib_version(void);
 }
 #endif
 
-#endif /* __MEMCACHED_VERSION_H__ */
+#endif /* __LIBMEMCACHED_VERSION_H__ */
index 6ee385333e057b4ca93ace089c8c72f75b2529b3..7d9af058f5fc2efebe376cbb971aa8fed095943b 100644 (file)
@@ -16,8 +16,8 @@
  * @brief Visibility control macros
  */
 
-#ifndef __LIBMEMCACHED_VISIBILITY_H
-#define __LIBMEMCACHED_VISIBILITY_H
+#ifndef __LIBMEMCACHED_VISIBILITY_H__
+#define __LIBMEMCACHED_VISIBILITY_H__
 
 /**
  *
@@ -51,4 +51,4 @@
 # endif /* defined(_MSC_VER) */
 #endif /* defined(BUILDING_LIBMEMCACHED) */
 
-#endif /* __LIBMEMCACHED_VISIBILITY_H */
+#endif /* __LIBMEMCACHED_VISIBILITY_H__ */
index a69d3916723b9933f571eac3af851db3b124f5fc..38410194b5c46376d09afc9ac445c7340fccb648 100644 (file)
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef LIBMEMCACHED_MEMCACHED_WATCHPOINT_H
-#define LIBMEMCACHED_MEMCACHED_WATCHPOINT_H
+#ifndef __LIBMEMCACHED_WATCHPOINT_H__
+#define __LIBMEMCACHED_WATCHPOINT_H__
 
 /* Some personal debugging functions */
 #if defined(DEBUG)
@@ -42,4 +42,4 @@
 
 #endif /* DEBUG */
 
-#endif /* LIBMEMCACHED_MEMCACHED_WATCHPOINT_H */
+#endif /* __LIBMEMCACHED_WATCHPOINT_H__ */