Home
last modified time | relevance | path

Searched refs:leechers (Results 1 – 25 of 1247) sorted by relevance

12345678910>>...50

/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/core3/tracker/protocol/udp/
H A DPRUDPPacketReplyAnnounce2.java39 protected int leechers; field in PRUDPPacketReplyAnnounce2
63 leechers = is.readInt(); in PRUDPPacketReplyAnnounce2()
94 leechers = _leechers; in setLeechersSeeders()
122 return( leechers ); in getLeechers()
140 os.writeInt( leechers ); in serialise()
158 ",leechers="+leechers+ in getString()
/dports/net-p2p/udpt/udpt-6a7bf22/src/db/
H A Ddriver_sqlite.cpp126 e->leechers = 0; in getTorrentInfo()
136 e->leechers = sqlite3_column_int (stmt, 1); in getTorrentInfo()
225 int leechers = 0, seeders = 0; in updatePeer() local
235 leechers += 1; in updatePeer()
239 cout << "seeders " << seeders << " leechers " << leechers << endl; in updatePeer()
246 sqlite3_bind_int (stmt, 4, leechers); in updatePeer()
332 int seeders = 0, leechers = 0; in cleanup() local
338 leechers = sqlite3_column_int (collectStats, 1); in cleanup()
344 sqlite3_bind_int(updateStats, 3, leechers); in cleanup()
/dports/net-p2p/ktorrent/ktorrent-21.12.3/plugins/infowidget/
H A Dtrackermodel.cpp211 , leechers(-1) in Item()
230 if (leechers != trk->getNumLeechers()) { in update()
231 leechers = trk->getNumLeechers(); in update()
258 return leechers >= 0 ? leechers : QVariant(); in displayData()
283 return leechers; in sortData()
/dports/net/kget/kget-21.12.3/transfer-plugins/bittorrent/advanceddetails/
H A Dtrackermodel.cpp241 seeders = leechers = -1; in Item()
262 if (leechers != trk->getNumLeechers()) in update()
264 leechers = trk->getNumLeechers(); in update()
290 case 3: return leechers >= 0 ? leechers : QVariant(); in displayData()
311 case 3: return leechers; in sortData()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/core3/download/impl/
H A DDownloadManagerAvailabilityImpl.java358 int leechers = delegate.getLeecherCount(); in DownloadManagerAvailabilityImpl()
360 if ( leechers < 0 ){ in DownloadManagerAvailabilityImpl()
362 leechers = (Integer)getScrape()[1]; in DownloadManagerAvailabilityImpl()
365 return( leechers ); in DownloadManagerAvailabilityImpl()
664 int leechers = lookup_status[2]; in DownloadManagerAvailabilityImpl()
667 if ( leechers == 0 && peers > 0 ){ in DownloadManagerAvailabilityImpl()
672 return( leechers ); in DownloadManagerAvailabilityImpl()
/dports/sysutils/munin-contrib/contrib-c31cb28/plugins/xbnbt/
H A Dxbnbt_peers71 $leechers = $3;
87 print "peers.value ".$peers."\nseeds.value ". $seeds."\nleechers.value ". $leechers."\nunique.value…
/dports/security/zeronet/ZeroNet-0.7.1/src/lib/subtl/
H A Dsubtl.py145 interval, leechers, seeders = struct.unpack(info_struct, info)
164 'leechers': leechers,
178 seeders, completed, leechers = struct.unpack(info_struct, info)
182 'leechers': leechers,
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/views/tableitems/mytorrents/
H A DPeersItem.java250 int leechers = (int)(cache&0x00ffffff); in refresh() local
252 value += leechers+1; in refresh()
306 int leechers = (int)(cache&0x00ffffff); in cellHover() local
308 if ( leechers != lTotalPeers ){ in cellHover()
309 …sToolTip += "\n" + leechers + " " + MessageText.getString( "Scrape.status.cached" ).toLowerCase( L… in cellHover()
/dports/irc/scrollz/ScrollZ-ScrollZ-2.3/help/cdcc/
H A Drequest9 Tells leechers what you need
11 Just pass it what you'd like leechers to send to you and whenever client
/dports/net-p2p/libktorrent/libktorrent-21.12.3/src/interfaces/
H A Dtrackerinterface.h89 return leechers; in getNumLeechers()
120 int leechers; variable
/dports/net-p2p/udpt/udpt-6a7bf22/src/
H A DudpTracker.cpp360 resp->leechers = m_hton32(tE.leechers); in handleAnnounce()
462 *leechers; in handleScrape() local
471 leechers = (int32_t*)&buffer[i*12+16]; in handleScrape()
485 *leechers = m_hton32 (tE.leechers); in handleScrape()
487 … << " Seeders: " << *seeders << " Completed: " << *completed << " Leechers: " << *leechers << endl; in handleScrape()
/dports/net-p2p/libktorrent/libktorrent-21.12.3/src/tracker/
H A Dudptracker.cpp130 leechers = ReadInt32(buf, 12); in announceReceived()
133 Uint32 nip = leechers + seeders; in announceReceived()
217 leechers = ReadInt32(buf, 16); in scrapeReceived()
218 …Out(SYS_TRK | LOG_DEBUG) << "Scrape : leechers = " << leechers << ", seeders = " << seeders << ", … in scrapeReceived()
/dports/net-p2p/transmission-utils/transmission-3.00/utils/
H A Dshow.c296 int64_t leechers; in doScrape() local
297 if (!tr_variantDictFindInt(val, TR_KEY_incomplete, &leechers)) in doScrape()
299 leechers = -1; in doScrape()
302 printf("%d seeders, %d leechers\n", (int)seeders, (int)leechers); in doScrape()
/dports/net-p2p/transmission-qt/transmission-3.00/utils/
H A Dshow.c296 int64_t leechers; in doScrape() local
297 if (!tr_variantDictFindInt(val, TR_KEY_incomplete, &leechers)) in doScrape()
299 leechers = -1; in doScrape()
302 printf("%d seeders, %d leechers\n", (int)seeders, (int)leechers); in doScrape()
/dports/net-p2p/transmission-daemon/transmission-3.00/utils/
H A Dshow.c296 int64_t leechers; in doScrape() local
297 if (!tr_variantDictFindInt(val, TR_KEY_incomplete, &leechers)) in doScrape()
299 leechers = -1; in doScrape()
302 printf("%d seeders, %d leechers\n", (int)seeders, (int)leechers); in doScrape()
/dports/net-p2p/transmission-cli/transmission-3.00/utils/
H A Dshow.c296 int64_t leechers; in doScrape() local
297 if (!tr_variantDictFindInt(val, TR_KEY_incomplete, &leechers)) in doScrape()
299 leechers = -1; in doScrape()
302 printf("%d seeders, %d leechers\n", (int)seeders, (int)leechers); in doScrape()
/dports/net-p2p/transmission-gtk/transmission-3.00/utils/
H A Dshow.c296 int64_t leechers; in doScrape() local
297 if (!tr_variantDictFindInt(val, TR_KEY_incomplete, &leechers)) in doScrape()
299 leechers = -1; in doScrape()
302 printf("%d seeders, %d leechers\n", (int)seeders, (int)leechers); in doScrape()
/dports/www/transmission-web/transmission-3.00/utils/
H A Dshow.c296 int64_t leechers; in doScrape() local
297 if (!tr_variantDictFindInt(val, TR_KEY_incomplete, &leechers)) in doScrape()
299 leechers = -1; in doScrape()
302 printf("%d seeders, %d leechers\n", (int)seeders, (int)leechers); in doScrape()
/dports/net-p2p/transmission-cli/transmission-3.00/libtransmission/
H A Dannouncer.c556 …if (leechers == pex_count && tr_torrentIsPrivate(tier->tor) && tr_torrentIsSeed(tier->tor) && seed… in getSeedProbability()
561 if (seeds >= 0 && leechers >= 0 && seeds + leechers > 0) in getSeedProbability()
563 return (int8_t)(100.0 * seeds / (seeds + leechers)); in getSeedProbability()
575 e.seedProbability = getSeedProbability(tier, seeds, leechers, n); in publishPeersPex()
1132 response->leechers, in on_announce_done()
1175 int leechers = 0; in on_announce_done() local
1191 if (response->leechers >= 0) in on_announce_done()
1193 tracker->leecherCount = leechers = response->leechers; in on_announce_done()
1456 row->leechers, in on_scrape_done()
1495 if (row->leechers >= 0) in on_scrape_done()
[all …]
H A Dannouncer-common.h61 int leechers; member
191 int leechers; member
/dports/net-p2p/transmission-qt/transmission-3.00/libtransmission/
H A Dannouncer.c556 …if (leechers == pex_count && tr_torrentIsPrivate(tier->tor) && tr_torrentIsSeed(tier->tor) && seed… in getSeedProbability()
561 if (seeds >= 0 && leechers >= 0 && seeds + leechers > 0) in getSeedProbability()
563 return (int8_t)(100.0 * seeds / (seeds + leechers)); in getSeedProbability()
575 e.seedProbability = getSeedProbability(tier, seeds, leechers, n); in publishPeersPex()
1132 response->leechers, in on_announce_done()
1175 int leechers = 0; in on_announce_done() local
1191 if (response->leechers >= 0) in on_announce_done()
1193 tracker->leecherCount = leechers = response->leechers; in on_announce_done()
1456 row->leechers, in on_scrape_done()
1495 if (row->leechers >= 0) in on_scrape_done()
[all …]
/dports/net-p2p/transmission-gtk/transmission-3.00/libtransmission/
H A Dannouncer.c556 …if (leechers == pex_count && tr_torrentIsPrivate(tier->tor) && tr_torrentIsSeed(tier->tor) && seed… in getSeedProbability()
561 if (seeds >= 0 && leechers >= 0 && seeds + leechers > 0) in getSeedProbability()
563 return (int8_t)(100.0 * seeds / (seeds + leechers)); in getSeedProbability()
575 e.seedProbability = getSeedProbability(tier, seeds, leechers, n); in publishPeersPex()
1132 response->leechers, in on_announce_done()
1175 int leechers = 0; in on_announce_done() local
1191 if (response->leechers >= 0) in on_announce_done()
1193 tracker->leecherCount = leechers = response->leechers; in on_announce_done()
1456 row->leechers, in on_scrape_done()
1495 if (row->leechers >= 0) in on_scrape_done()
[all …]
/dports/net-p2p/transmission-daemon/transmission-3.00/libtransmission/
H A Dannouncer.c556 …if (leechers == pex_count && tr_torrentIsPrivate(tier->tor) && tr_torrentIsSeed(tier->tor) && seed… in getSeedProbability()
561 if (seeds >= 0 && leechers >= 0 && seeds + leechers > 0) in getSeedProbability()
563 return (int8_t)(100.0 * seeds / (seeds + leechers)); in getSeedProbability()
575 e.seedProbability = getSeedProbability(tier, seeds, leechers, n); in publishPeersPex()
1132 response->leechers, in on_announce_done()
1175 int leechers = 0; in on_announce_done() local
1191 if (response->leechers >= 0) in on_announce_done()
1193 tracker->leecherCount = leechers = response->leechers; in on_announce_done()
1456 row->leechers, in on_scrape_done()
1495 if (row->leechers >= 0) in on_scrape_done()
[all …]
/dports/net-p2p/transmission-utils/transmission-3.00/libtransmission/
H A Dannouncer.c556 …if (leechers == pex_count && tr_torrentIsPrivate(tier->tor) && tr_torrentIsSeed(tier->tor) && seed… in getSeedProbability()
561 if (seeds >= 0 && leechers >= 0 && seeds + leechers > 0) in getSeedProbability()
563 return (int8_t)(100.0 * seeds / (seeds + leechers)); in getSeedProbability()
575 e.seedProbability = getSeedProbability(tier, seeds, leechers, n); in publishPeersPex()
1132 response->leechers, in on_announce_done()
1175 int leechers = 0; in on_announce_done() local
1191 if (response->leechers >= 0) in on_announce_done()
1193 tracker->leecherCount = leechers = response->leechers; in on_announce_done()
1456 row->leechers, in on_scrape_done()
1495 if (row->leechers >= 0) in on_scrape_done()
[all …]
/dports/www/transmission-web/transmission-3.00/libtransmission/
H A Dannouncer.c556 …if (leechers == pex_count && tr_torrentIsPrivate(tier->tor) && tr_torrentIsSeed(tier->tor) && seed… in getSeedProbability()
561 if (seeds >= 0 && leechers >= 0 && seeds + leechers > 0) in getSeedProbability()
563 return (int8_t)(100.0 * seeds / (seeds + leechers)); in getSeedProbability()
575 e.seedProbability = getSeedProbability(tier, seeds, leechers, n); in publishPeersPex()
1132 response->leechers, in on_announce_done()
1175 int leechers = 0; in on_announce_done() local
1191 if (response->leechers >= 0) in on_announce_done()
1193 tracker->leecherCount = leechers = response->leechers; in on_announce_done()
1456 row->leechers, in on_scrape_done()
1495 if (row->leechers >= 0) in on_scrape_done()
[all …]

12345678910>>...50