Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | load-tester: Fix load-tester on platforms where plain `char` is signed | Tobias Brunner | 2016-06-17 | 1 | -1/+1 |
| | | | | | | | | fgetc() returns an int and EOF is usually -1 so when this gets casted to a char the result depends on whether `char` means `signed char` or `unsigned char` (the C standard does not specify it). If it is unsigned then its value is 0xff so the comparison with EOF will fail as that is an implicit signed int. | ||||
* | load-tester: Include string.h for strcmp() on some platforms | Tobias Brunner | 2015-08-13 | 1 | -0/+1 |
| | |||||
* | load-tester: use a stream service to dispatch control connections | Martin Willi | 2013-07-18 | 1 | -1/+1 |
| | |||||
* | Add a delay option to load-tester socket | Martin Willi | 2012-11-29 | 1 | -5/+5 |
| | |||||
* | Add a simple load-tester utility to initiate over control socket | Martin Willi | 2012-11-29 | 1 | -0/+104 |