mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-05 12:36:14 -07:00
15 lines
No EOL
236 B
C++
15 lines
No EOL
236 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;
|
|
};
|
|
} // namespace ZeroTier
|
|
|
|
#endif |