summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--node/EthernetTap.cpp2
-rw-r--r--node/EthernetTap.hpp2
-rw-r--r--node/Network.cpp2
3 files changed, 5 insertions, 1 deletions
diff --git a/node/EthernetTap.cpp b/node/EthernetTap.cpp
index 89265188..88096470 100644
--- a/node/EthernetTap.cpp
+++ b/node/EthernetTap.cpp
@@ -148,6 +148,7 @@ EthernetTap::EthernetTap(
const RuntimeEnvironment *renv,
const MAC &mac,
unsigned int mtu,
+ const char *desc,
void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
void *arg)
throw(std::runtime_error) :
@@ -248,6 +249,7 @@ EthernetTap::EthernetTap(
const RuntimeEnvironment *renv,
const MAC &mac,
unsigned int mtu,
+ const char *desc,
void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
void *arg)
throw(std::runtime_error) :
diff --git a/node/EthernetTap.hpp b/node/EthernetTap.hpp
index 292146bc..2083e9e9 100644
--- a/node/EthernetTap.hpp
+++ b/node/EthernetTap.hpp
@@ -62,6 +62,7 @@ public:
* @param renv Runtime environment
* @param mac MAC address of device
* @param mtu MTU of device
+ * @param desc If non-NULL, a description (not used on all OSes)
* @param handler Handler function to be called when data is received from the tap
* @param arg First argument to handler function
* @throws std::runtime_error Unable to allocate device
@@ -70,6 +71,7 @@ public:
const RuntimeEnvironment *renv,
const MAC &mac,
unsigned int mtu,
+ const char *desc,
void (*handler)(void *,const MAC &,const MAC &,unsigned int,const Buffer<4096> &),
void *arg)
throw(std::runtime_error);
diff --git a/node/Network.cpp b/node/Network.cpp
index 314c9feb..d974c5d2 100644
--- a/node/Network.cpp
+++ b/node/Network.cpp
@@ -150,7 +150,7 @@ SharedPtr<Network> Network::newInstance(const RuntimeEnvironment *renv,uint64_t
nw->_rlLimit.bytesPerSecond = ZT_MULTICAST_DEFAULT_BYTES_PER_SECOND;
nw->_rlLimit.maxBalance = ZT_MULTICAST_DEFAULT_RATE_MAX_BALANCE;
nw->_rlLimit.minBalance = ZT_MULTICAST_DEFAULT_RATE_MIN_BALANCE;
- nw->_tap = new EthernetTap(renv,renv->identity.address().toMAC(),ZT_IF_MTU,&_CBhandleTapData,nw.ptr());
+ nw->_tap = new EthernetTap(renv,renv->identity.address().toMAC(),ZT_IF_MTU,(const char *)0,&_CBhandleTapData,nw.ptr());
nw->_id = id;
nw->_lastConfigUpdate = 0;
nw->_destroyOnDelete = false;