ithungto / rutorrent

Automatically exported from code.google.com/p/rutorrent
0 stars 0 forks source link

Peer and Seeder counts are incorrectly displaying as 0(0) #59

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Add a torrent with a known number of seeds/peers
2. Torrent will display as 0(0)/0(0) or low numbers for active peers only

What is the expected output? What do you see instead?
I'm running both wTorrent and ruTorrent. In wTorrent a torrent will show as
having a certain number of seeds/peers, eg 153(0)/4(0). However, in
ruTorrent the same torrent will display as 0(0)/0(0).

What version of the product are you using? On what operating system?
ruTorrent v2.6, rTorrent on a seedbox running Linux.

Please provide any additional information below.
Let me know if you need any additional info from me.

Original issue reported on code.google.com by loglow on 3 Sep 2009 at 11:22

GoogleCodeExporter commented 9 years ago
wTorrent use scrape and show

t_get_scrape_complete / (get_peers_complete)
t_get_scrape_incomplete / (get_peers_accounted)

if scape is off - it will always show 0\0.
ruTorrent does'nt use scrape and show

get_peers_complete / (get_peers_not_connected+get_peers_connected)
get_peers_accounted / (get_peers_not_connected+get_peers_connected)

Original comment by novik65 on 4 Sep 2009 at 4:09

GoogleCodeExporter commented 9 years ago
Fair enough. What's the rationale behind this difference?

As a followup, would it be possible to include this information in a column, 
perhaps
under a different name, or as an option in the settings?

Thanks for the explanation in any case.

Original comment by loglow on 4 Sep 2009 at 4:58

GoogleCodeExporter commented 9 years ago
>Fair enough. What's the rationale behind this difference?

On all private trackers (AFAIK) scrape is disabled. As result, on it's you 
always
will see zero at first position. In my realisation you will see a count of
peers/seeds with which your client *really* can work.

>As a followup, would it be possible to include this information in a column, 
perhaps
under a different name, or as an option in the settings?

You may write own plugin for that, for example. Like that:

Original comment by novik65 on 4 Sep 2009 at 8:33

Attachments:

GoogleCodeExporter commented 9 years ago
Thank you for the example. Much appreciated.

Original comment by loglow on 9 Sep 2009 at 8:43