summaryrefslogtreecommitdiff
path: root/src/tunDevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tunDevice.h')
-rw-r--r--src/tunDevice.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tunDevice.h b/src/tunDevice.h
index a5e0a09..d680662 100644
--- a/src/tunDevice.h
+++ b/src/tunDevice.h
@@ -50,6 +50,7 @@ public:
int write(u_int8_t* buf, u_int32_t len);
std::string getActualName() { return actual_name_; }
+ std::string getActualNode() { return actual_node_; }
device_type_t getType() { return conf_.type_; }
std::string getTypeString()
{
@@ -88,6 +89,7 @@ private:
DeviceConfig conf_;
bool with_pi_;
std::string actual_name_;
+ std::string actual_node_;
};
#endif