From 702ff4419422824e1f648b8703b3dfcbc1b813b9 Mon Sep 17 00:00:00 2001 From: drbob Date: Wed, 29 Jun 2011 10:46:11 +0000 Subject: [PATCH] added new dummy callback. Required for updated libbitdht. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4355 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libretroshare/src/dht/p3bitdht.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libretroshare/src/dht/p3bitdht.cc b/libretroshare/src/dht/p3bitdht.cc index 2cdd9499f..82e14a663 100644 --- a/libretroshare/src/dht/p3bitdht.cc +++ b/libretroshare/src/dht/p3bitdht.cc @@ -59,6 +59,12 @@ virtual int dhtValueCallback(const bdNodeId *id, std::string key, uint32_t statu return mParent->ValueCallback(id, key, status); } +virtual int dhtConnectCallback(const bdId *srcId, const bdId *proxyId, const bdId *destId, + uint32_t mode, uint32_t point, uint32_t cbtype, uint32_t errcode) +{ + return 0; +} + private: p3BitDht *mParent;