Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
CMakeLists.txt | D | 12-May-2024 | 2 KiB | 80 | 69 | |
README.md | D | 12-May-2024 | 421 | 25 | 15 | |
minimal-mqtt-client-multi.c | D | 12-May-2024 | 11.2 KiB | 438 | 310 | |
selftest.sh.broken-on-travis | D | 12-May-2024 | 660 | 33 | 8 | |
warmcat.com.cer | D | 12-May-2024 | 3.5 KiB | 59 | 58 | |
wget-log | D | 12-May-2024 | 631 | 14 | 9 |
README.md
1 # lws minimal MQTT client multi 2 3 ## build 4 5 ``` 6 $ cmake . && make 7 ``` 8 9 ## usage 10 11 The application goes to https://warmcat.com and receives the page data 12 same as minimal http client. 13 14 However it does it for 8 client connections concurrently. 15 16 ## Commandline Options 17 18 Option|Meaning 19 ---|--- 20 -c <conns>|Count of simultaneous connections (default 8) 21 -s|Stagger the connections by 100ms, the last by 1s 22 -p|Use stream binding 23 24 25