diff options
author | mkaay <mkaay@mkaay.de> | 2010-02-17 21:30:46 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-02-17 21:30:46 +0100 |
commit | b61a1288fd32f09120141fb5d6b8edcd8d5dbba5 (patch) | |
tree | 54bd817d3cca43b8d6bce1c505bc515b3566abb4 /module | |
parent | django builtin server improvement (diff) | |
download | pyload-b61a1288fd32f09120141fb5d6b8edcd8d5dbba5.tar.xz |
checksum now consumes less memory, fixed cookie cleaning
Diffstat (limited to 'module')
-rwxr-xr-x | module/network/Request.py | 2 | ||||
-rw-r--r-- | module/plugins/hoster/NetloadIn.py | 6 | ||||
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 6 | ||||
-rw-r--r-- | module/plugins/hoster/UploadedTo.py | 6 |
4 files changed, 16 insertions, 4 deletions
diff --git a/module/network/Request.py b/module/network/Request.py index 5e3503bb3..7cb68dd4a 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -230,7 +230,7 @@ class Request: def clear_cookies(self): if self.curl: - self.pycurl.setopt(pycurl.COOKIELIST, "ALL") + self.pycurl.setopt(pycurl.COOKIELIST, "") else: del self.cookies[:] diff --git a/module/plugins/hoster/NetloadIn.py b/module/plugins/hoster/NetloadIn.py index 46afc4080..d0e5b89ba 100644 --- a/module/plugins/hoster/NetloadIn.py +++ b/module/plugins/hoster/NetloadIn.py @@ -146,7 +146,11 @@ class NetloadIn(Plugin): if self.api_data and self.api_data["checksum"]: h = hashlib.md5() f = open(local_file, "rb") - h.update(f.read()) + while True: + data = f.read(128) + if not data: + break + h.update(data) f.close() hexd = h.hexdigest() if hexd == self.api_data["checksum"]: diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index d7a47e6ae..d45789f33 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -182,7 +182,11 @@ class RapidshareCom(Plugin): if self.api_data and self.api_data["checksum"]: h = hashlib.md5() f = open(local_file, "rb") - h.update(f.read()) + while True: + data = f.read(128) + if not data: + break + h.update(data) f.close() hexd = h.hexdigest() if hexd == self.api_data["checksum"]: diff --git a/module/plugins/hoster/UploadedTo.py b/module/plugins/hoster/UploadedTo.py index 38529eb4f..852e77cd4 100644 --- a/module/plugins/hoster/UploadedTo.py +++ b/module/plugins/hoster/UploadedTo.py @@ -146,7 +146,11 @@ class UploadedTo(Plugin): if self.api_data and self.api_data["checksum"]: h = hashlib.sha1() f = open(local_file, "rb") - h.update(f.read()) + while True: + data = f.read(128) + if not data: + break + h.update(data) f.close() hexd = h.hexdigest() if hexd == self.api_data["checksum"]: |