aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/load_tester/load_tester.c
Commit message (Collapse)AuthorAgeFilesLines
* load-tester: Fix load-tester on platforms where plain `char` is signedTobias Brunner2016-06-171-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 platformsTobias Brunner2015-08-131-0/+1
|
* load-tester: use a stream service to dispatch control connectionsMartin Willi2013-07-181-1/+1
|
* Add a delay option to load-tester socketMartin Willi2012-11-291-5/+5
|
* Add a simple load-tester utility to initiate over control socketMartin Willi2012-11-291-0/+104