ZeroTierOne/nonfree/controller/Redis.hpp
Adam Ierymenko c668990b4d
Some checks are pending
/ build_macos (push) Waiting to run
/ build_windows (push) Waiting to run
/ build_ubuntu (push) Waiting to run
Remove ancient unused LFDB code and change license notice in controller files.
2025-08-11 17:19:05 -04:00

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