Changeset 4 for trunk/src/server/bittorrent.py
- Timestamp:
- 11/06/07 18:53:41 (5 years ago)
- Files:
-
- 1 modified
-
trunk/src/server/bittorrent.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/server/bittorrent.py
r3 r4 40 40 return len(self.daemon.get_status_all()) 41 41 def setUploadLimit(self, limit): 42 " "42 "Set la valeur d'upload max" 43 43 self.daemon.set_uplimit(limit) 44 44 self.upload_limit = self.daemon.get_uplimit() 45 45 def setDownloadLimit(self, limit): 46 " "46 "Set la valeur de download max" 47 47 self.daemon.set_downlimit(limit) 48 48 self.download_limit = self.daemon.get_downlimit() … … 110 110 except: 111 111 pass 112 113
