-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dtls-client.c: add support_cid option.
Signed-off-by: Achim Kraus <[email protected]>
- Loading branch information
Showing
1 changed file
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,9 @@ static dtls_context_t *orig_dtls_context = NULL; | |
static const dtls_cipher_t* ciphers = NULL; | ||
static unsigned int force_extended_master_secret = 0; | ||
static unsigned int force_renegotiation_info = 0; | ||
|
||
#if (DTLS_MAX_CID_LENGTH > 0) | ||
static unsigned int support_cid = 0; | ||
#endif | ||
|
||
#ifdef DTLS_ECC | ||
static const unsigned char ecdsa_priv_key[] = { | ||
|
@@ -240,6 +242,9 @@ get_user_parameters(struct dtls_context_t *ctx, | |
(void) session; | ||
user_parameters->force_extended_master_secret = force_extended_master_secret; | ||
user_parameters->force_renegotiation_info = force_renegotiation_info; | ||
#if (DTLS_MAX_CID_LENGTH > 0) | ||
user_parameters->support_cid = support_cid; | ||
#endif | ||
if (ciphers) { | ||
int i = 0; | ||
while (i < DTLS_MAX_CIPHER_SUITES) { | ||
|
@@ -354,13 +359,18 @@ usage( const char *program, const char *version) { | |
|
||
fprintf(stderr, "%s v%s -- DTLS client implementation\n" | ||
"(c) 2011-2014 Olaf Bergmann <[email protected]>\n\n" | ||
"usage: %s [-c cipher suites] [-e] " | ||
#ifdef DTLS_PSK | ||
"usage: %s [-c cipher suites] [-e] [-i file] [-k file] [-o file]\n" | ||
" %*s [-p port] [-r] [-v num] addr [port]\n", | ||
"[-i file] [-k file] [-o file]\n" | ||
" %*s [-p port] [-r] [-v num]" | ||
#else /* DTLS_PSK */ | ||
"usage: %s [-c cipher suites] [-e] [-o file] [-p port] [-r]\n" | ||
" %*s [-v num] addr [port]\n", | ||
"[-o file] [-p port] [-r]\n" | ||
" %*s [-v num]" | ||
#endif /* DTLS_PSK */ | ||
#if (DTLS_MAX_CID_LENGTH > 0) | ||
" [-z]" | ||
#endif /* DTLS_MAX_CID_LENGTH > 0*/ | ||
" addr [port]\n", | ||
program, version, program, (int)strlen(program), ""); | ||
cipher_suites_usage(stderr, "\t"); | ||
fprintf(stderr, "\t-e\t\tforce extended master secret (RFC7627)\n" | ||
|
@@ -372,7 +382,10 @@ usage( const char *program, const char *version) { | |
"\t \t\t(use '-' for STDOUT)\n" | ||
"\t-p port\t\tlisten on specified port (default is %d)\n" | ||
"\t-r\t\tforce renegotiation info (RFC5746)\n" | ||
"\t-v num\t\tverbosity level (default: 3)\n", | ||
"\t-v num\t\tverbosity level (default: 3)\n" | ||
#if (DTLS_MAX_CID_LENGTH > 0) | ||
"\t-z\t\tsupport CID (RFC9146)\n", | ||
#endif /* DTLS_MAX_CID_LENGTH > 0*/ | ||
DEFAULT_PORT); | ||
} | ||
|
||
|
@@ -428,7 +441,7 @@ main(int argc, char **argv) { | |
memcpy(psk_key, PSK_DEFAULT_KEY, psk_key_length); | ||
#endif /* DTLS_PSK */ | ||
|
||
while ((opt = getopt(argc, argv, "c:eo:p:rv:" PSK_OPTIONS)) != -1) { | ||
while ((opt = getopt(argc, argv, "c:eo:p:rv:z" PSK_OPTIONS)) != -1) { | ||
switch (opt) { | ||
#ifdef DTLS_PSK | ||
case 'i' : | ||
|
@@ -476,6 +489,9 @@ main(int argc, char **argv) { | |
case 'v' : | ||
log_level = strtol(optarg, NULL, 10); | ||
break; | ||
case 'z' : | ||
support_cid = 1; | ||
break; | ||
default: | ||
usage(argv[0], dtls_package_version()); | ||
exit(1); | ||
|