mirror of https://github.com/wolfSSL/wolfssl.git
examples/: refactor a couple help strings to avoid hitting clang-tidy bugprone-suspicious-missing-comma.
parent
768737d21e
commit
a5250482ce
|
@ -1165,12 +1165,12 @@ static const char* client_usage_msg[][70] = {
|
|||
"-D Override Date Errors example\n", /* 18 */
|
||||
"-e List Every cipher suite available, \n", /* 19 */
|
||||
"-g Send server HTTP GET\n", /* 20 */
|
||||
"-u Use UDP DTLS,"
|
||||
#ifndef WOLFSSL_DTLS13
|
||||
" add -v 2 for DTLSv1, -v 3 for DTLSv1.2 (default)\n", /* 21 */
|
||||
"-u Use UDP DTLS, add -v 2 for DTLSv1, -v 3 for DTLSv1.2"
|
||||
" (default)\n", /* 21 */
|
||||
#else
|
||||
" add -v 2 for DTLSv1, -v 3 for DTLSv1.2 (default), -v 4 for "
|
||||
"DTLSv1.3\n", /* 21 */
|
||||
"-u Use UDP DTLS, add -v 2 for DTLSv1, -v 3 for DTLSv1.2"
|
||||
" (default), -v 4 for DTLSv1.3\n", /* 21 */
|
||||
#endif /* !WOLFSSL_DTLS13 */
|
||||
#ifdef WOLFSSL_SCTP
|
||||
"-G Use SCTP DTLS,"
|
||||
|
|
|
@ -828,12 +828,12 @@ static const char* server_usage_msg[][64] = {
|
|||
"-d Disable client cert check\n", /* 12 */
|
||||
"-b Bind to any interface instead of localhost only\n",/* 13 */
|
||||
"-s Use pre Shared keys\n", /* 14 */
|
||||
"-u Use UDP DTLS,"
|
||||
#ifndef WOLFSSL_DTLS13
|
||||
" add -v 2 for DTLSv1, -v 3 for DTLSv1.2 (default)\n", /* 21 */
|
||||
"-u Use UDP DTLS, add -v 2 for DTLSv1, -v 3 for DTLSv1.2"
|
||||
" (default)\n", /* 15 */
|
||||
#else
|
||||
" add -v 2 for DTLSv1, -v 3 for DTLSv1.2 (default), -v 4 for "
|
||||
"DTLSv1.3\n", /* 21 */
|
||||
"-u Use UDP DTLS, add -v 2 for DTLSv1, -v 3 for DTLSv1.2"
|
||||
" (default), -v 4 for DTLSv1.3\n", /* 15 */
|
||||
#endif /* !WOLFSSL_DTLS13 */
|
||||
#ifdef WOLFSSL_SCTP
|
||||
"-G Use SCTP DTLS,"
|
||||
|
|
Loading…
Reference in New Issue