aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-10-28 14:35:23 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-10-28 14:35:23 +0100
commit8613c9bed377a05d097ffa0387f22906a4799e57 (patch)
treee85f094478ac02b4cd574b1f4984f6c8625b07ef /utils.c
parentb2540ad3304f13306cff98c29992b52a6f6d03b6 (diff)
added -U / -P optionHEADmaster
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/utils.c b/utils.c
index 1a52bc1..7ec6fb9 100644
--- a/utils.c
+++ b/utils.c
@@ -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)