mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-19 07:38:23 +00:00
UI work, add name to listnetworks output in control bus interface.
This commit is contained in:
@ -28,6 +28,9 @@
|
||||
#ifndef _ZT_NODE_HPP
|
||||
#define _ZT_NODE_HPP
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace ZeroTier {
|
||||
|
||||
/**
|
||||
@ -70,6 +73,7 @@ public:
|
||||
*/
|
||||
unsigned long send(const char *command)
|
||||
throw();
|
||||
inline unsigned long send(const std::string &command) throw() { return send(command.c_str()); }
|
||||
|
||||
/**
|
||||
* Split a line of results by space
|
||||
|
Reference in New Issue
Block a user