diff options
-rw-r--r-- | gui.py | 1 | ||||
-rwxr-xr-x | proxy.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -30,6 +30,7 @@ class Settings(gtk.Window): self.show_all() def on_quit(self, widget): + print self.time_slice.get_value() proxy.TIME_SLICE = self.time_slice.get_value() self.destroy() @@ -132,7 +132,7 @@ class MagicHTTPProxyClient(object): and self.fetch_pos + 1 < self.content_length and self.channel.connected \ and len( filter(lambda f: f.proxy == fetcher.proxy, self.fetchers) ) < 2: #Start a new fetcher on this line if this fetchers is X-Bytes before finished his job - blocksize = min(int(TIME_SLICE * fetcher.speed()), MIN_BLOCKSIZE) + blocksize = max(int(TIME_SLICE * fetcher.speed()), MIN_BLOCKSIZE) fetch_range = self.next_range(blocksize) print "Start new Fetcher, bs=%s range=%s" % (blocksize,fetch_range) self.fetchers.append( Fetcher(self, fetcher.proxy, self.url, self.header, fetch_range) ) |