mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-19 05:26:54 +02:00
16 lines
No EOL
286 B
C++
16 lines
No EOL
286 B
C++
#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
|