Hello,
I would suggest a feature which should work like this:
as a single file can be downloaded from more users it would be nice
to have a feature that pings each users in queue and then connect to the fastest one.
and/or also a feature with which i set a Minimum download speed
so that if I'm downloading a file at very low rate, it disconnects from
that user and tries the other users since it reaches the minimum download
rate configured.
thanks
A new very usefull feature
Moderator: Moderators
Multiple source download would be nice, as would a minimum speed requirement for files.
The ping thing has been done though, it doesn't really reflect download speed, just ping.
The only time you need low ping is multiplayer games, where it all depends on how fast you send the packet, you can still have high download speed with a bad ping because it relates to the size of the packet.
Never hurts to have good ping for the 15+ hops though.
The ping thing has been done though, it doesn't really reflect download speed, just ping.
The only time you need low ping is multiplayer games, where it all depends on how fast you send the packet, you can still have high download speed with a bad ping because it relates to the size of the packet.
Never hurts to have good ping for the 15+ hops though.
"Tomorrow sees undone, what happens not today. Indecision brings delays. Days lost lamenting lost days"
"I’m getting some kind of sick pleasure out of watching her squirm!?!........must be a perk!"
"I’m getting some kind of sick pleasure out of watching her squirm!?!........must be a perk!"
-
- DC++ Contributor
- Posts: 3212
- Joined: 2003-01-07 21:46
- Location: .pa.us
Remember the red, yellow, and green dots by the user names in the older versions?(If you used it that far back)
Didn't really help anything so arne took it out.
Didn't really help anything so arne took it out.
"Tomorrow sees undone, what happens not today. Indecision brings delays. Days lost lamenting lost days"
"I’m getting some kind of sick pleasure out of watching her squirm!?!........must be a perk!"
"I’m getting some kind of sick pleasure out of watching her squirm!?!........must be a perk!"
-
- DC++ Contributor
- Posts: 3212
- Joined: 2003-01-07 21:46
- Location: .pa.us
-
- Forum Moderator
- Posts: 58
- Joined: 2003-01-03 11:30
- Location: Québec, Canada
- Contact:
Yeah thats what I thought. Maybe I'm wrong, but isn't this the code that determines the dot color:
Code: Select all
const string& tmp = sr->getUser()->getConnection();
if( (tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_288K]) ||
(tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_576K]) ||
(tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_SATELLITE]) ||
(tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_ISDN]) ) {
image = 1;
} else if( (tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_CABLE]) ||
(tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_DSL]) ) {
image = 2;
} else if( (tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_T1]) ||
(tmp == SettingsManager::connectionSpeeds[SettingsManager::SPEED_T3]) ) {
image = 3;
}