4

我试过这段代码:

import libtorrent as lt
import time
ses = lt.session()
ses.listen_on(6881, 6891)
info = lt.torrent_info('test.torrent')
h = ses.add_torrent({'ti': info, 'save_path': './'})
print 'starting', h.name()
while (not h.is_seed()):
   s = h.status()
   p = h.get_peer_info()

   print lt.peer_info().ip

   sys.stdout.flush()

   time.sleep(15)

print h.name(), 'complete'

它打印这个:

starting test.avi
('0.0.0.0', 0)

('0.0.0.0', 0)
. 
.
.

所以不是给我一个同行列表,而是给我零。我做错了什么吗?

4

1 回答 1

4

看起来您的 python 代码中存在错误。

打印 lt.peer_info().ip

该行将构造一个新的 peer_info 对象,然后打印 IP(此时将默认初始化,并包含 0.0.0.0)。

我相信你想做的是:

for i in p:
   print i.ip()

即,对于洪流中的每个对等方,打印其 IP。

于 2012-11-06T23:30:53.920 回答