From fb31f93c5295752b5a07d742dae397654c6c8f67 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 10 Jun 2014 15:25:15 -0700 Subject: Protocol messages for bridging. GitHub issue #68 --- node/PacketDecoder.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'node/PacketDecoder.cpp') diff --git a/node/PacketDecoder.cpp b/node/PacketDecoder.cpp index b1b37160..6091196e 100644 --- a/node/PacketDecoder.cpp +++ b/node/PacketDecoder.cpp @@ -97,8 +97,8 @@ bool PacketDecoder::tryDecode(const RuntimeEnvironment *_r) return _doRENDEZVOUS(_r,peer); case Packet::VERB_FRAME: return _doFRAME(_r,peer); - case Packet::VERB_BRIDGED_FRAME: - return _doBRIDGED_FRAME(_r,peer); + case Packet::VERB_EXT_FRAME: + return _doEXT_FRAME(_r,peer); case Packet::VERB_MULTICAST_FRAME: return _doMULTICAST_FRAME(_r,peer); case Packet::VERB_MULTICAST_LIKE: @@ -455,9 +455,8 @@ bool PacketDecoder::_doFRAME(const RuntimeEnvironment *_r,const SharedPtr return true; } -bool PacketDecoder::_doBRIDGED_FRAME(const RuntimeEnvironment *_r,const SharedPtr &peer) +bool PacketDecoder::_doEXT_FRAME(const RuntimeEnvironment *_r,const SharedPtr &peer) { - // TODO: bridging is not implemented yet return true; } -- cgit v1.2.3