If libcrypto implementation of AES is used, do not compile internal
[awesomized/libmemcached] / src / libmemcached / csl / context.h
index 2fa624075d18ce3f42d6d921f65342e89458daf9..3e1ddb1850d57dcaa9814dfc45eedd31c78d4848 100644 (file)
@@ -1,6 +1,6 @@
 /*
     +--------------------------------------------------------------------+
-    | libmemcached - C/C++ Client Library for memcached                  |
+    | libmemcached-awesome - C/C++ Client Library for memcached          |
     +--------------------------------------------------------------------+
     | Redistribution and use in source and binary forms, with or without |
     | modification, are permitted under the terms of the BSD license.    |
@@ -9,7 +9,7 @@
     | the terms online at: https://opensource.org/licenses/BSD-3-Clause  |
     +--------------------------------------------------------------------+
     | Copyright (c) 2006-2014 Brian Aker   https://datadifferential.com/ |
-    | Copyright (c) 2020 Michael Wallner   <mike@php.net>                |
+    | Copyright (c) 2020-2021 Michael Wallner        https://awesome.co/ |
     +--------------------------------------------------------------------+
 */
 
@@ -41,7 +41,9 @@ public:
     memcached_string_create(memc, &_string_buffer, 1024);
   }
 
-  bool end() { return _end; }
+  bool end() {
+    return _end;
+  }
 
   void start();
 
@@ -52,17 +54,25 @@ public:
 
   bool set_hash(memcached_hash_t hash);
 
-  void set_server() { _is_server = true; }
+  void set_server() {
+    _is_server = true;
+  }
 
-  void unset_server() { _is_server = false; }
+  void unset_server() {
+    _is_server = false;
+  }
 
-  bool is_server() const { return _is_server; }
+  bool is_server() const {
+    return _is_server;
+  }
 
   void hostname(const char *, size_t, server_t &);
 
   bool string_buffer(const char *, size_t, memcached_string_t &);
 
-  const char *hostname() const { return _hostname; }
+  const char *hostname() const {
+    return _hostname;
+  }
 
   void abort(const char *, config_tokentype, const char *);
   void error(const char *, config_tokentype, const char *);