diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -17,8 +17,15 @@ LD_PRELOAD=./slowloris.so curl 10.23.25.3 ``` A delay between individual send() calls (in microseconds) can be set by -providing `SLOWLORIS_DELAY` like so: +providing `SLOWLORIS_DELAY`. The default delay is `0`. ```shell SLOWLORIS_DELAY=1000 LD_PRELOAD=./slowloris.so curl 10.23.25.3 ``` + +The number of bytes sent per iteration can be set by supplying `SLOWLORIS_CHUNK`. +The default chunking is `1`. + +```shell +SLOWLORIS_CHUNK=10 LD_PRELOAD=./slowloris.so curl 10.23.25.3 +``` |