aboutsummaryrefslogtreecommitdiffstats
path: root/toys
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2013-04-17 09:33:22 +0200
committerLaurent Ghigonis <laurent@p1sec.com>2013-04-17 09:33:22 +0200
commit71e647f7a1ec074c8bdba12b795d1fd2573348ca (patch)
tree18933f7627084f6088a25bb88d4488fdfdb00a45 /toys
parentgrbrute: add some profiling reports (diff)
downloadlaurent-tools-71e647f7a1ec074c8bdba12b795d1fd2573348ca.tar.xz
laurent-tools-71e647f7a1ec074c8bdba12b795d1fd2573348ca.zip
grbrute: note about pipelining
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