This commit is contained in:
Grant Limberg
2020-05-11 16:02:49 -07:00
parent 8f3a0b17ad
commit d699116795
53 changed files with 434 additions and 15121 deletions

15
controller/Redis.hpp Normal file
View File

@@ -0,0 +1,15 @@
#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