summaryrefslogtreecommitdiff
path: root/node/Node.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2016-08-04 11:40:38 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2016-08-04 11:40:38 -0700
commit98152d974ada42e659e65590dec9a53d0a28ef54 (patch)
tree0b548af496bc78c0f106b5592322024c274491a5 /node/Node.hpp
parent56febbf2bac2c51d9478616a1dd28243ef03f406 (diff)
downloadinfinitytier-98152d974ada42e659e65590dec9a53d0a28ef54.tar.gz
infinitytier-98152d974ada42e659e65590dec9a53d0a28ef54.zip
More cleanup and removal of DeferredPackets, will do the latter in a more elegant way.
Diffstat (limited to 'node/Node.hpp')
-rw-r--r--node/Node.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/node/Node.hpp b/node/Node.hpp
index 0a39d1ee..98c4fd7c 100644
--- a/node/Node.hpp
+++ b/node/Node.hpp
@@ -117,19 +117,10 @@ public:
void clusterRemoveMember(unsigned int memberId);
void clusterHandleIncomingMessage(const void *msg,unsigned int len);
void clusterStatus(ZT_ClusterStatus *cs);
- void backgroundThreadMain();
// Internal functions ------------------------------------------------------
/**
- * Convenience threadMain() for easy background thread launch
- *
- * This allows background threads to be launched with Thread::start
- * that will run against this node.
- */
- inline void threadMain() throw() { this->backgroundThreadMain(); }
-
- /**
* @return Time as of last call to run()
*/
inline uint64_t now() const throw() { return _now; }