mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 06:02:41 -04:00
Added Bandwidth Monitoring service to libretroshare to help debug Lag.
- p3bwctrl.h/.cc & rsbwctrlitems.h/.cc - New Interface in pqihandler to extract the data. - New Interface in rsconfig to display in GUI. - Added extra debugging in pqistreamer for catching big outqueues. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5241 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
0d3d1ebc18
commit
48a1c66c60
16 changed files with 880 additions and 31 deletions
|
@ -24,6 +24,7 @@
|
|||
*/
|
||||
|
||||
#include "rsserver/p3serverconfig.h"
|
||||
#include "services/p3bwctrl.h"
|
||||
|
||||
RsServerConfig *rsConfig = NULL;
|
||||
|
||||
|
@ -107,10 +108,33 @@ int p3ServerConfig::getConfigStartup(RsConfigStartup &/*params*/)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if 0
|
||||
int p3ServerConfig::getConfigDataRates(RsConfigDataRates &/*params*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
/***** for RsConfig -> p3BandwidthControl ****/
|
||||
|
||||
int p3ServerConfig::getTotalBandwidthRates(RsConfigDataRates &rates)
|
||||
{
|
||||
if (rsBandwidthControl)
|
||||
{
|
||||
return rsBandwidthControl->getTotalBandwidthRates(rates);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int p3ServerConfig::getAllBandwidthRates(std::map<std::string, RsConfigDataRates> &ratemap)
|
||||
{
|
||||
if (rsBandwidthControl)
|
||||
{
|
||||
return rsBandwidthControl->getAllBandwidthRates(ratemap);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/* From RsInit */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue