ZeroTierOne/controller/Redis.hpp

15 lines
226 B
C++
Raw Normal View History

2020-05-11 23:02:49 +00:00
#ifndef ZT_CONTROLLER_REDIS_HPP
#define ZT_CONTROLLER_REDIS_HPP
#include <string>
namespace ZeroTier {
struct RedisConfig {
std::string hostname;
int port;
std::string password;
bool clusterMode;
};
}
#endif