summaryrefslogtreecommitdiff
path: root/node/PacketDecoder.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-11 18:15:51 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-07-11 18:15:51 -0400
commitfd2b383c3e8e1a4b81454611b966c6c775c03913 (patch)
tree7fc2eaef2df20a0e33ac30d77743d219ac6d6494 /node/PacketDecoder.hpp
parentae93c95151adf3806b6d9eb1cedc2bf1f034655e (diff)
downloadinfinitytier-fd2b383c3e8e1a4b81454611b966c6c775c03913.tar.gz
infinitytier-fd2b383c3e8e1a4b81454611b966c6c775c03913.zip
Work in progress...
Diffstat (limited to 'node/PacketDecoder.hpp')
-rw-r--r--node/PacketDecoder.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/node/PacketDecoder.hpp b/node/PacketDecoder.hpp
index 5f27c56b..49d47a51 100644
--- a/node/PacketDecoder.hpp
+++ b/node/PacketDecoder.hpp
@@ -76,7 +76,14 @@ public:
inline uint64_t receiveTime() const throw() { return _receiveTime; }
private:
- void _doHELLO(Demarc::Port localPort,const InetAddress &fromAddr);
+ bool _doERROR(const RuntimeEnvironment *_r);
+ bool _doHELLO(const RuntimeEnvironment *_r);
+ bool _doOK(const RuntimeEnvironment *_r);
+ bool _doWHOIS(const RuntimeEnvironment *_r);
+ bool _doRENDEZVOUS(const RuntimeEnvironment *_r);
+ bool _doFRAME(const RuntimeEnvironment *_r);
+ bool _doMULTICAST_LIKE(const RuntimeEnvironment *_r);
+ bool _doMULTICAST_FRAME(const RuntimeEnvironment *_r);
uint64_t _receiveTime;
Demarc::Port _localPort;