rate limiter fix

This commit is contained in:
Arvid Norberg
2010-08-27 14:52:42 +00:00
parent 764b5864c6
commit e2ca3e1545
6 changed files with 24 additions and 10 deletions

View File

@@ -793,6 +793,7 @@ int main(int argc, char* argv[])
" -H Don't start DHT\n"
" -W <num peers> Set the max number of peers to keep in the peer list\n"
" -N Do not attempt to use UPnP and NAT-PMP to forward ports\n"
" -Y Rate limit local peers\n"
" "
"\n\n"
"TORRENT is a path to a .torrent file\n"
@@ -989,6 +990,7 @@ int main(int argc, char* argv[])
break;
case 'I': outgoing_interface = arg; break;
case 'N': start_upnp = false; --i; break;
case 'Y': settings.ignore_limits_on_local_network = false; --i; break;
}
++i; // skip the argument
}