make things compile

This commit is contained in:
Grant Limberg 2025-04-03 14:26:09 -07:00
parent 5c73fe9304
commit 0b04f772ef
8 changed files with 700 additions and 72 deletions

16
controller/CtlUtil.hpp Normal file
View file

@ -0,0 +1,16 @@
#ifndef ZT_CTLUTIL_HPP
#define ZT_CTLUTIL_HPP
#include <vector>
#include <string>
namespace ZeroTier {
const char *_timestr();
std::vector<std::string> split(std::string str, char delim);
std::string url_encode(const std::string &value);
}
#endif // namespace ZeroTier