diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-10-28 14:35:23 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-10-28 14:35:23 +0100 |
commit | 8613c9bed377a05d097ffa0387f22906a4799e57 (patch) | |
tree | e85f094478ac02b4cd574b1f4984f6c8625b07ef /utils.c | |
parent | b2540ad3304f13306cff98c29992b52a6f6d03b6 (diff) |
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -10,7 +10,7 @@ __attribute__((noreturn)) void usage(const char * const arg0) { - fprintf(stderr, "usage: %s -k [SODIUM-KEY] -h [HOST] -p [PORT] -f [FILE]\n", arg0); + fprintf(stderr, "usage: %s -k [SODIUM-KEY] -U [USER] -P [PASS] -r [HOST] -R [PORT] -f [FILE]\n", arg0); exit(EXIT_FAILURE); } @@ -18,16 +18,22 @@ void parse_cmdline(struct cmd_options * const opts, int argc, char ** const argv { int opt; - while ((opt = getopt(argc, argv, "k:h:p:f:h")) != -1) { + while ((opt = getopt(argc, argv, "k:U:P:r:R:f:h")) != -1) { switch (opt) { case 'k': opts->key_string = strdup(optarg); memset(optarg, '*', strlen(optarg)); break; - case 'h': + case 'U': + opts->user = strdup(optarg); + break; + case 'P': + opts->pass = strdup(optarg); + break; + case 'r': opts->host = strdup(optarg); break; - case 'p': + case 'R': opts->port = strdup(optarg); break; case 'f': @@ -47,6 +53,12 @@ void parse_cmdline(struct cmd_options * const opts, int argc, char ** const argv if (opts->key_string != NULL) { opts->key_length = strlen(opts->key_string); } + if (opts->user == NULL) { + opts->user = strdup("username"); + } + if (opts->pass == NULL) { + opts->pass = strdup("passphrase"); + } } char * prettify_bytes_with_units(char * const out, size_t out_size, unsigned long long bytes) |