Fixed config forward compatibility problem

- note to self: C++ binary file not same as C binary file 

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2510 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2010-03-10 14:08:52 +00:00
parent 0b4bc0f2eb
commit 6054890725
6 changed files with 357 additions and 165 deletions

View file

@ -251,8 +251,14 @@ bool p3Blogs::BlogMessageSend(BlogMsgInfo &info)
bool p3Blogs::BlogMessageReply(BlogMsgInfo& reply){
if(reply.msgIdReply.empty())
// ensure it has a value
if(isReply(reply)){
std::cerr << "p3Blogs::BlogMessageReply()" << " This is not a reply " << std::endl;
return false;
}
// also check that msgId exists for group
return BlogMessageSend(reply);
}
@ -306,6 +312,23 @@ bool p3Blogs::blogSubscribe(std::string cId, bool subscribe)
}
bool p3Blogs::deleteBlogMsg(std::string cId, std::string mId){
return false;
}
bool p3Blogs::isBlogDeleted(std::string cId){
return false;
}
bool p3Blogs::isBlogMsgDeleted(std::string cId, std::string mId){
return false;
}
bool p3Blogs::deleteBlog(std::string cId){
return false;
}
/***************************************************************************************/
/****************** Event Feedback (Overloaded form p3distrib) *************************/
/***************************************************************************************/