summaryrefslogtreecommitdiff
path: root/node/PacketDecoder.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2014-06-10 15:25:15 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2014-06-10 15:25:15 -0700
commitfb31f93c5295752b5a07d742dae397654c6c8f67 (patch)
tree58f6e4bac4e2b8fbc1262d69cfdbb8896faf2c01 /node/PacketDecoder.cpp
parentf720f04fa0474f936fe306d7c3cf48c4a7d64815 (diff)
downloadinfinitytier-fb31f93c5295752b5a07d742dae397654c6c8f67.tar.gz
infinitytier-fb31f93c5295752b5a07d742dae397654c6c8f67.zip
Protocol messages for bridging. GitHub issue #68
Diffstat (limited to 'node/PacketDecoder.cpp')
-rw-r--r--node/PacketDecoder.cpp7
1 files changed, 3 insertions, 4 deletions
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<Peer>
return true;
}
-bool PacketDecoder::_doBRIDGED_FRAME(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer)
+bool PacketDecoder::_doEXT_FRAME(const RuntimeEnvironment *_r,const SharedPtr<Peer> &peer)
{
- // TODO: bridging is not implemented yet
return true;
}