Adding several corrections. Most important is fixing regression in ccnb-parser-block.cc
diff --git a/apps/ccnx-consumer.cc b/apps/ccnx-consumer.cc
index 8352212..81d44b8 100644
--- a/apps/ccnx-consumer.cc
+++ b/apps/ccnx-consumer.cc
@@ -39,7 +39,7 @@
.SetParent<Application> ()
.AddConstructor<CcnxConsumer> ()
.AddAttribute ("OffTime", "Time interval between packets",
- TimeValue (Seconds (0.001)),
+ TimeValue (Seconds (0.1)),
MakeTimeAccessor (&CcnxConsumer::m_offTime),
MakeTimeChecker ())
.AddAttribute ("InterestName","CcnxName of the Interest (use CcnxNameComponents)",
@@ -178,7 +178,8 @@
Ptr<Packet> packet = Create<Packet> ();
packet->AddHeader (interestHeader);
-
+
+ NS_LOG_INFO ("Packet: " << packet);
m_face->ReceiveFromApplication (packet);
m_interestsTrace (m_face,packet);