We're back! (IN POG FORM)
In some cases, yes...it's something wrong with checkfortimerover() i think....
if (thePrefs::TransferFullChunks()) { // "Transfer full chunks": drop client after 10 MB upload, or after an hour. // (so average UL speed should at least be 2.84 kB/s) // We don't track what he is downloading, but if it's all from one chunk he gets it. if (client->GetUpStartTimeDelay() > 3600000 // time: 1h || client->GetSessionUp() > 10485760) { // data: 10MB kickHim = true; } } else {
#define SESSIONMAXTRANS (PARTSIZE+20*1024) // "Try to send complete chunks" always sends this amount of data
- GonoszTopi beat me I see.