int64_t SearchResult::getSpeedPerSlot() const noexcept {
	return totalSlots > 0 ? getConnectionInt() / totalSlots : 0;
}
Exemple #2
0
int64_t SearchResult::getSpeedPerSlot() const {
	return slots > 0 ? getConnectionInt() / slots : 0;
}