2
0

Redis.hpp 226 B

123456789101112131415
  1. #ifndef ZT_CONTROLLER_REDIS_HPP
  2. #define ZT_CONTROLLER_REDIS_HPP
  3. #include <string>
  4. namespace ZeroTier {
  5. struct RedisConfig {
  6. std::string hostname;
  7. int port;
  8. std::string password;
  9. bool clusterMode;
  10. };
  11. }
  12. #endif