mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-17 14:48:17 +00:00
Renamed supernode to rootserver
This commit is contained in:
@ -32,9 +32,8 @@
|
||||
|
||||
namespace ZeroTier {
|
||||
|
||||
void Dictionary::fromString(const char *s,unsigned int maxlen)
|
||||
void Dictionary::updateFromString(const char *s,unsigned int maxlen)
|
||||
{
|
||||
clear();
|
||||
bool escapeState = false;
|
||||
std::string keyBuf;
|
||||
std::string *element = &keyBuf;
|
||||
@ -75,6 +74,12 @@ void Dictionary::fromString(const char *s,unsigned int maxlen)
|
||||
(*this)[keyBuf];
|
||||
}
|
||||
|
||||
void Dictionary::fromString(const char *s,unsigned int maxlen)
|
||||
{
|
||||
clear();
|
||||
updateFromString(s,maxlen);
|
||||
}
|
||||
|
||||
bool Dictionary::sign(const Identity &id,uint64_t now)
|
||||
{
|
||||
try {
|
||||
|
Reference in New Issue
Block a user