Add support for SASL
[awesomized/libmemcached] / clients / client_options.h
index 33a0f81b6d25c48763f6e2f0cd765cff6fba8461..9293b9cacafba3b252d41f9de1a2e914b9b4e622 100644 (file)
@@ -1,3 +1,14 @@
+/* LibMemcached
+ * Copyright (C) 2006-2009 Brian Aker
+ * All rights reserved.
+ *
+ * Use and distribution licensed under the BSD license.  See
+ * the COPYING file in the parent directory for full text.
+ *
+ * Summary:
+ *
+ */
+
 #ifndef __CLIENT_OPTIONS_H__
 #define __CLIENT_OPTIONS_H__
 
@@ -9,6 +20,7 @@ typedef enum {
   OPT_HELP= 'h',
   OPT_VERBOSE= 'v',
   OPT_DEBUG= 'd',
+  OPT_ANALYZE= 'a',
   OPT_FLAG= 257,
   OPT_EXPIRE,
   OPT_SET,
@@ -23,6 +35,9 @@ typedef enum {
   OPT_FLUSH,
   OPT_HASH,
   OPT_BINARY,
+  OPT_UDP,
+  OPT_USERNAME,
+  OPT_PASSWD
 } memcached_options;
 
 #endif /* CLIENT_OPTIONS */