freebsd-ports/net/py-bittornado/files/extra-patch-BitTornado_BT1_Rerequester.py
Edwin Groothuis 01ab3fff1d [MAINTAINER] net/py23-BitTornado: [SUMMARIZE CHANGES]
- Added manual pages from Debian Linux.
    - Added sample script that can be used as startup/stop script for
    Bittorrent sites (hopefully will be integrated in $PREFIX/etc/rc.d/ once
    (but first I need some feedback)
    - Added proper IPv6 support - removing compact=1 from announcements.
    (If you want you can test it at http://6net.nii.hu:6969)

PR:		ports/71736
Submitted by:	Janos Mohacsi <janos.mohacsi@bsd.hu>
2004-10-13 08:34:07 +00:00

30 lines
985 B
Python

$FreeBSD$
--- BitTornado/BT1/Rerequester.py.orig Tue Sep 14 19:32:11 2004
+++ BitTornado/BT1/Rerequester.py Tue Sep 14 19:33:00 2004
@@ -115,7 +115,7 @@
if self.howmany() >= self.maxpeers:
s += '&numwant=0'
else:
- s += '&no_peer_id=1&compact=1'
+ s += '&no_peer_id=1'
self.last_failed = True # force true, so will display an error
self.special = specialurl
self.rerequest(s, callback)
@@ -132,7 +132,7 @@
if self.howmany() >= self.maxpeers:
s += '&numwant=0'
else:
- s += '&no_peer_id=1&compact=1'
+ s += '&no_peer_id=1'
if event != 3:
s += '&event=' + ['started', 'completed', 'stopped'][event]
@@ -384,4 +384,4 @@
self.lock.acquire()
x = self.finished
self.lock.release()
- return x
\ No newline at end of file
+ return x