From: Cameron Dale Date: Wed, 20 Feb 2008 05:52:36 +0000 (-0800) Subject: Added 2 (commented) failed attempts to throttle the web server. X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=commitdiff_plain;h=ef24631cd901522741529d3ef2ee458f2e9ced1d Added 2 (commented) failed attempts to throttle the web server. --- diff --git a/apt_dht/HTTPServer.py b/apt_dht/HTTPServer.py index 5f4b4f2..20f94cd 100644 --- a/apt_dht/HTTPServer.py +++ b/apt_dht/HTTPServer.py @@ -3,6 +3,8 @@ from urllib import unquote_plus from twisted.python import log from twisted.internet import defer +#from twisted.protocols import htb +#from twisted.protocols.policies import ThrottlingFactory from twisted.web2 import server, http, resource, channel from twisted.web2 import static, http_headers, responsecode @@ -53,6 +55,17 @@ class TopLevel(resource.Resource): self.factory = channel.HTTPFactory(server.Site(self), **{'maxPipeline': 10, 'betweenRequestsTimeOut': 60}) +# serverFilter = htb.HierarchicalBucketFilter() +# serverBucket = htb.Bucket() +# +# # Cap total server traffic at 20 kB/s +# serverBucket.maxburst = 20000 +# serverBucket.rate = 20000 +# +# serverFilter.buckets[None] = serverBucket +# +# self.factory.protocol = htb.ShapedProtocolFactory(self.factory.protocol, serverFilter) +# self.factory = ThrottlingFactory(self.factory, writeLimit = 300*1024) return self.factory def render(self, ctx):