diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-07-27 13:36:27 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-07-27 13:36:27 -0400 |
commit | b0a83093ce698390a4e2d266ba1c63ee241cd7ad (patch) | |
tree | 5b7d2f15e65c14d9ff220f19b2ee9f728757b2be /node/PacketDecoder.cpp | |
parent | 57d8730f1b3da3f9fe23a9fa02c8557b80bf6716 (diff) | |
download | infinitytier-b0a83093ce698390a4e2d266ba1c63ee241cd7ad.tar.gz infinitytier-b0a83093ce698390a4e2d266ba1c63ee241cd7ad.zip |
Back out of RPC... blech. Have a better idea.
Diffstat (limited to 'node/PacketDecoder.cpp')
-rw-r--r-- | node/PacketDecoder.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/node/PacketDecoder.cpp b/node/PacketDecoder.cpp index e081fa8e..810e30a7 100644 --- a/node/PacketDecoder.cpp +++ b/node/PacketDecoder.cpp @@ -102,8 +102,6 @@ bool PacketDecoder::tryDecode(const RuntimeEnvironment *_r) return _doMULTICAST_LIKE(_r,peer); case Packet::VERB_MULTICAST_FRAME: return _doMULTICAST_FRAME(_r,peer); - case Packet::VERB_RPC: - return _doRPC(_r,peer); default: // This might be something from a new or old version of the protocol. // Technically it passed HMAC so the packet is still valid, but we @@ -540,8 +538,4 @@ bool PacketDecoder::_doMULTICAST_FRAME(const RuntimeEnvironment *_r,const Shared return true; } -bool PacketDecoder::_doRPC(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer) -{ -} - } // namespace ZeroTier |