docs: memparse (fix #80) [ci skip]
[awesomized/libmemcached] / libtest / memcached.h
index 8a0b17955a229a8f75560c6e13c8a2a909b22897..195ce7ab4fd509b246e295ad0e6ef320b17f8d78 100644 (file)
@@ -40,34 +40,7 @@ namespace libtest {
 
 libtest::Server *build_memcached(const std::string& hostname, const in_port_t try_port);
 
-libtest::Server *build_memcached_light(const std::string& socket_file, const in_port_t try_port);
-
 libtest::Server *build_memcached_socket(const std::string& socket_file, const in_port_t try_port);
 
-libtest::Server *build_memcached_sasl(const std::string& hostname, const in_port_t try_port, const std::string& username, const std::string& password);
-
-libtest::Server *build_memcached_sasl_socket(const std::string& socket_file, const in_port_t try_port, const std::string& username, const std::string& password);
-
-}
-
-#if defined(LIBMEMCACHED) && LIBMEMCACHED
-bool operator== (const memcached_st&c memc, const memcached_return_t rc)
-{
-  if (memcached_last_error(&memc) == rc)
-  {
-    return true;
-  }
-
-  return false;
 }
 
-bool operator!= (const memcached_st&c memc, const memcached_return_t rc)
-{
-  if (memcached_last_error(&memc) != rc)
-  {
-    return true;
-  }
-
-  return false;
-}
-#endif