mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 06:35:08 -04:00
BugFix: DHT was not turning on.
also updated the ServerDialog with more info on exact network state. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@753 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
95d5f38222
commit
bc98b9ea7d
12 changed files with 330 additions and 122 deletions
|
@ -124,6 +124,15 @@ int RsServer::UpdateAllConfig()
|
|||
config.maxIndivDataRate = (int) pqih -> getMaxIndivRate(true);/* kb */
|
||||
config.promptAtBoot = true; /* popup the password prompt */
|
||||
|
||||
/* update network configuration */
|
||||
|
||||
config.netOk = mConnMgr->getNetStatusOk();
|
||||
config.netUpnpOk = mConnMgr->getNetStatusUpnpOk();
|
||||
config.netDhtOk = mConnMgr->getNetStatusDhtOk();
|
||||
config.netExtOk = mConnMgr->getNetStatusExtOk();
|
||||
config.netUdpOk = mConnMgr->getNetStatusUdpOk();
|
||||
config.netTcpOk = mConnMgr->getNetStatusTcpOk();
|
||||
|
||||
/* update DHT/UPnP config */
|
||||
|
||||
config.uPnPState = mConnMgr->getUPnPState();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue