UI work, add name to listnetworks output in control bus interface.
This commit is contained in:
parent
902c8c38d2
commit
c979a695c5
9 changed files with 178 additions and 25 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue