More new CLI work.

This commit is contained in:
Adam Ierymenko 2016-06-23 12:37:15 -07:00
parent a5ea8cc5cb
commit 32d9850263
4 changed files with 225 additions and 83 deletions

View file

@ -235,6 +235,11 @@ public:
*/
static inline char toLower(char c) throw() { return (char)OSUtils::TOLOWER_TABLE[(unsigned long)c]; }
/**
* @return Platform default ZeroTier One home path
*/
static std::string platformDefaultHomePath();
private:
static const unsigned char TOLOWER_TABLE[256];
};