1# lws minimal secure streams stress 2 3This is the same as minimal-secure-streams, except you can have it perform concurrent 4SS connections and a budget of sequential connections. 5 6It basically forks as many times as `-c <concurrent>` and each fork does `--budget <count>` 7SS connections one after the other. 8 9## build 10 11``` 12 $ cmake . && make 13``` 14 15## usage 16 17Commandline option|Meaning 18---|--- 19-d <loglevel>|Debug verbosity in decimal, eg, -d15| 20-c <concurrent>|Fork this many times on init| 21--budget <count>|Each fork sequentially does this many SS connections (default 1)| 22--pass-limit <count>|By default the pass limit is the budget, but if doing fault injection you can set a lower limit here| 23