Start of tunnel request handling.

This commit is contained in:
Ian Gulliver
2015-02-07 16:04:40 -08:00
parent 578615a99e
commit 6fc6070d5f
4 changed files with 20 additions and 0 deletions

5
tlv.cc
View File

@@ -105,3 +105,8 @@ const std::string& TLVNode::GetValue() const {
assert(!this->IsContainer());
return value_;
}
const std::list<TLVNode*>& TLVNode::GetChildren() const {
assert(this->IsContainer());
return children_;
}