mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 06:35:08 -04:00
Share Flags
- now, only files with the NETWORK_WIDE flag are searchable by turtle hopping. Next move: - integrate turtle search in default gui. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1512 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
45618c39c5
commit
cb5f22a5c6
4 changed files with 42 additions and 6 deletions
|
@ -447,7 +447,10 @@ int ftServer::SearchKeywords(std::list<std::string> keywords, std::list<FileDeta
|
|||
}
|
||||
|
||||
#endif
|
||||
return mFiStore->SearchKeywords(keywords, results,flags);
|
||||
if(flags & DIR_FLAGS_LOCAL)
|
||||
return mFiMon->SearchKeywords(keywords, results,flags);
|
||||
else
|
||||
return mFiStore->SearchKeywords(keywords, results,flags);
|
||||
}
|
||||
|
||||
int ftServer::SearchBoolExp(Expression * exp, std::list<FileDetail> &results)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue