| 5 | static bool __debug = false; |
| 6 | |
| 7 | static void usage(const char* procname) |
| 8 | { |
| 9 | printf("usage: %s -h [help]\r\n" |
| 10 | " -f path of mbedtls or polarssl\r\n" |
| 11 | " -s server_addr [default: 127.0.0.1:1443]\r\n" |
| 12 | " -H host\r\n" |
| 13 | " -U url\r\n" |
| 14 | " -L data_length [default: 1024]\r\n" |
| 15 | " -c cocurrent [default: 1]\r\n" |
| 16 | " -S [use ssl, default: no]\r\n" |
| 17 | " -n count [default: 10]\r\n" |
| 18 | " -D [if show data]\r\n" |
| 19 | , procname); |
| 20 | } |
| 21 | |
| 22 | int main(int argc, char* argv[]) |
| 23 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…