Show
Ignore:
Timestamp:
11/06/07 18:53:41 (5 years ago)
Author:
francois
Message:

Ajout affichage valeur download et upload

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/server/bittorrent.py

    r3 r4  
    4040        return len(self.daemon.get_status_all()) 
    4141    def setUploadLimit(self, limit): 
    42         "" 
     42        "Set la valeur d'upload max" 
    4343        self.daemon.set_uplimit(limit) 
    4444        self.upload_limit = self.daemon.get_uplimit() 
    4545    def setDownloadLimit(self, limit): 
    46         "" 
     46        "Set la valeur de download max" 
    4747        self.daemon.set_downlimit(limit) 
    4848        self.download_limit = self.daemon.get_downlimit() 
     
    110110        except: 
    111111            pass 
    112              
    113