Merge in changes to allow for weights on hosts.
[awesomized/libmemcached] / libmemcached / options / symbol.h
index 508dacbd172807d14e84a71f81593c7d4f05877f..919d3f17391a8957a28efafe9b4fdb2edeb563cb 100644 (file)
@@ -37,6 +37,7 @@
 
 #pragma once
 
+#include <libmemcached/constants.h>
 #include <libmemcached/options/string.h>
 #include <libmemcached/options/server.h>
 
@@ -44,8 +45,13 @@ union YYSTYPE
 {
   long long number;  
   string_t string;
-  server_t server;
+  string_t option;
   double double_number;
+  memcached_server_distribution_t distribution;
+  memcached_hash_t hash;
+  memcached_behavior_t behavior;
+  bool boolean;
+  server_t server;
 };
 
 typedef union YYSTYPE YYSTYPE;