src: Improving consistency and correcting code style
As of this commit, all data structures can be directly constructed from
wire format.
This commit excludes full correction of code style in security/ and
tools/ndnsec*, which will be part of a different commit.
Change-Id: I121ac1f81948bc7468990df52cdefeb2988d91a1
Refs: #1403
diff --git a/src/data.hpp b/src/data.hpp
index 4d84933..ee84615 100644
--- a/src/data.hpp
+++ b/src/data.hpp
@@ -241,7 +241,7 @@
inline size_t
Data::wireEncode(EncodingImpl<T>& block, bool unsignedPortion/* = false*/) const
{
- size_t total_len = 0;
+ size_t totalLength = 0;
// Data ::= DATA-TLV TLV-LENGTH
// Name
@@ -259,27 +259,27 @@
if (!unsignedPortion)
{
// SignatureValue
- total_len += prependBlock(block, m_signature.getValue());
+ totalLength += prependBlock(block, m_signature.getValue());
}
// SignatureInfo
- total_len += prependBlock(block, m_signature.getInfo());
+ totalLength += prependBlock(block, m_signature.getInfo());
// Content
- total_len += prependBlock(block, getContent());
+ totalLength += prependBlock(block, getContent());
// MetaInfo
- total_len += getMetaInfo().wireEncode(block);
+ totalLength += getMetaInfo().wireEncode(block);
// Name
- total_len += getName().wireEncode(block);
+ totalLength += getName().wireEncode(block);
if (!unsignedPortion)
{
- total_len += block.prependVarNumber (total_len);
- total_len += block.prependVarNumber (Tlv::Data);
+ totalLength += block.prependVarNumber (totalLength);
+ totalLength += block.prependVarNumber (Tlv::Data);
}
- return total_len;
+ return totalLength;
}
inline const Block&