* BUGFIX: Multiple DHT searches / reconnect attempts (p3dhtmgr) done!

* Tweaks to the File Interface.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@636 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-07-06 15:05:59 +00:00
parent 1f01c08de4
commit 9629c6923c
5 changed files with 81 additions and 18 deletions

View file

@ -43,13 +43,14 @@
/* for DHT peer STATE */
#define DHT_PEER_INIT 0
#define DHT_PEER_SEARCH 1
#define DHT_PEER_FOUND 2
#define DHT_PEER_OFF 0
#define DHT_PEER_INIT 1
#define DHT_PEER_SEARCH 2
#define DHT_PEER_FOUND 3
/* for DHT peer STATE (ownEntry) */
#define DHT_PEER_ADDR_KNOWN 3
#define DHT_PEER_PUBLISHED 4
#define DHT_PEER_ADDR_KNOWN 4
#define DHT_PEER_PUBLISHED 5
/* Interface with Real DHT Implementation */
#define DHT_MODE_SEARCH 1