mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-14 20:12:29 -04:00
Modifications to Game Launcher to fixup the display of names / status.
Added Date check to DHT Server File, so we don't download each restart. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@378 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d05ef8d797
commit
7eeb4420fe
10 changed files with 139 additions and 20 deletions
|
@ -35,6 +35,7 @@ class DHTClient
|
|||
public:
|
||||
|
||||
/* initialise from file */
|
||||
virtual bool checkServerFile(std::string filename) = 0;
|
||||
virtual bool loadServers(std::string filename) = 0;
|
||||
virtual bool loadServersFromWeb(std::string storename) = 0;
|
||||
virtual bool loadServers(std::istream&) = 0;
|
||||
|
@ -54,6 +55,7 @@ class DHTClientDummy: public DHTClient
|
|||
public:
|
||||
|
||||
/* initialise from file */
|
||||
virtual bool checkServerFile(std::string filename) { return false; }
|
||||
virtual bool loadServers(std::string filename) { return true; }
|
||||
virtual bool loadServersFromWeb(std::string storename) { return true; }
|
||||
virtual bool loadServers(std::istream&) { return true; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue