aboutsummaryrefslogtreecommitdiffstats
path: root/toys
diff options
context:
space:
mode:
Diffstat (limited to 'toys')
-rw-r--r--toys/grbrute.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/toys/grbrute.py b/toys/grbrute.py
index 414fd53..fbdc8bc 100644
--- a/toys/grbrute.py
+++ b/toys/grbrute.py
@@ -6,10 +6,11 @@ import time
import warnings
# grbrute - asynchronous URL fetcher based on grequests
-# Uses multiple simultaneous connections (HTTP/1.1) and multiple parralel
-# requests per connection.
+# Uses multiple simultaneous connections and reuses them (HTTP/1.1)
# 2013, Laurent Ghigonis <laurent@p1sec.com>
+# XXX urllib3 and therefore requests do not support pipelining ...
+
# Python grequests ressources :
# http://stackoverflow.com/questions/16015749/in-what-way-is-grequests-asynchronous
# https://github.com/kennethreitz/grequests/issues/13