Redis.hpp 295 B

12345678910111213141516171819
  1. /* (c) ZeroTier, Inc.
  2. * See LICENSE.txt in nonfree/
  3. */
  4. #ifndef ZT_CONTROLLER_REDIS_HPP
  5. #define ZT_CONTROLLER_REDIS_HPP
  6. #include <string>
  7. namespace ZeroTier {
  8. struct RedisConfig {
  9. std::string hostname;
  10. int port;
  11. std::string password;
  12. bool clusterMode;
  13. };
  14. } // namespace ZeroTier
  15. #endif