Commenting out duplicate functionality with locators...
diff --git a/src/sync-core.h b/src/sync-core.h
index cb44398..b97596f 100644
--- a/src/sync-core.h
+++ b/src/sync-core.h
@@ -37,7 +37,7 @@
{
public:
typedef boost::function<void (const SyncStateMsgPtr & stateMsg) > StateMsgCallback;
- typedef map<Name, Name> YellowPage;
+ // typedef map<Name, Name> YellowPage;
typedef boost::shared_mutex Mutex;
typedef boost::shared_lock<Mutex> ReadLock;
typedef boost::unique_lock<Mutex> WriteLock;
@@ -59,14 +59,14 @@
// some other code should call this fuction when local prefix
// changes; e.g. when wake up in another network
- void
- updateLocalPrefix(const Name &localPrefix);
+ // void
+ // updateLocalPrefix(const Name &localPrefix);
void
updateLocalState(sqlite3_int64);
- Name
- yp(const Name &name);
+ // Name
+ // yp(const Name &name);
void
handleInterest(const Name &name);
@@ -123,7 +123,7 @@
Name m_localPrefix;
Name m_syncPrefix;
HashPtr m_rootHash;
- YellowPage m_yp;
+ // YellowPage m_yp;
Mutex m_ypMutex;
CcnxWrapperPtr m_handle;
Closure m_syncClosure;