mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-05 22:32:55 +02:00
19 lines
295 B
C++
19 lines
295 B
C++
/* (c) ZeroTier, Inc.
|
|
* See LICENSE.txt in nonfree/
|
|
*/
|
|
|
|
#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
|