You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|