mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 04:57:53 +00:00
15 lines
226 B
C++
15 lines
226 B
C++
#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 |