| 4 | #include "https_request.h" |
| 5 | |
| 6 | static void usage(const char* procname) |
| 7 | { |
| 8 | printf("usage: %s -h [help]\r\n" |
| 9 | " -f path of mbedtls or polarss\r\n" |
| 10 | " -s server_addr [default: 127.0.0.1:1443]\r\n" |
| 11 | " -H host\r\n" |
| 12 | " -k [keep alive, default: false]\r\n" |
| 13 | " -L data_length [default: 1024]\r\n" |
| 14 | " -c cocurrent [default: 1]\r\n" |
| 15 | " -S [use ssl, default: no]\r\n" |
| 16 | " -Z [if support gzip, default: no]\r\n" |
| 17 | " -B [if show response body, default: no]\r\n" |
| 18 | " -n count [default: 10]\r\n", procname); |
| 19 | } |
| 20 | |
| 21 | int main(int argc, char* argv[]) |
| 22 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…