client code needs to call start() in order to start syncing
diff --git a/model/sync-logic.cc b/model/sync-logic.cc
index c46dbe8..a7fc746 100644
--- a/model/sync-logic.cc
+++ b/model/sync-logic.cc
@@ -49,6 +49,11 @@
   m_ccnxHandle->setInterestFilter (syncPrefix,
                                    bind (&SyncLogic::respondSyncInterest, this, _1));
 
+
+}
+
+void SyncLogic::start()
+{
 	// We need to send out our Sync Interest when we're ready
 	sendSyncInterest();
 }