Forgot to actually enforce limit on content store. Solved.
diff --git a/model/ccnx-content-store.cc b/model/ccnx-content-store.cc
index 4633000..b526308 100644
--- a/model/ccnx-content-store.cc
+++ b/model/ccnx-content-store.cc
@@ -126,6 +126,8 @@
   if (it == m_contentStore.end ())
     { // add entry to the top
       m_contentStore.get<mru> ().push_front (CcnxContentStoreEntry (header, packet));
+      if (m_contentStore.size () > m_maxSize)
+        m_contentStore.get<mru> ().pop_back ();
     }
   else
     {