Changeset 5e8e2f445f95565b7d389fd7257eb807d9b95114
- Timestamp:
- 07/03/10 07:00:27 (2 months ago)
- Author:
- John M. Schanck <john@…>
- Parents:
- 66cb2eb6805763b0b7435a8d249a550e7c5e70b2
- Children:
- 33c1e034855f33ccfb401ac878455d2b88da1600
- git-committer:
- John M. Schanck <john@anomos.info> / 2010-07-03T03:00:27Z-0400
- Message:
-
tracker side failed peer list parsing
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rc27409d
|
r5e8e2f4
|
|
| 77 | 77 | self.num_natcheck = INFINITY |
| 78 | 78 | # Mark any failed peers |
| 79 | | for x in params.get('failed', []): |
| 80 | | self.failed(x) |
| | 79 | failed = params.get('failed', []) |
| | 80 | for x in range(0,len(failed), 2): |
| | 81 | self.failed(failed[x:x+2]) |
| 81 | 82 | # Update stats |
| 82 | 83 | ihash = params.get('info_hash') |