Added QueueSize information to be exported too.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-06-22 01:35:32 +00:00
parent 9fcc9277c2
commit e0af833f47
8 changed files with 56 additions and 2 deletions

View file

@ -146,6 +146,9 @@ class RsConfigDataRates
mAllowedOut = 0;
mAllowedTs = 0;
mQueueIn = 0;
mQueueOut = 0;
}
/* all in kB/s */
@ -160,6 +163,9 @@ class RsConfigDataRates
float mAllowedOut;
time_t mAllowedTs;
int mQueueIn;
int mQueueOut;
};