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 /server.c | |
parent | b2540ad3304f13306cff98c29992b52a6f6d03b6 (diff) |
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -22,7 +22,7 @@ #include "protocol.h" #include "utils.h" -static struct cmd_options opts = {.key_string = NULL, .key_length = 0, .host = NULL, .port = 0, .filepath = NULL}; +static struct cmd_options opts = {.key_string = NULL, .key_length = 0, .user = NULL, .pass = NULL, .host = NULL, .port = 0, .filepath = NULL}; static int data_fd = -1; static void recv_data(uint8_t const * const buffer, size_t size) @@ -51,8 +51,8 @@ enum recv_return protocol_request_client_auth(struct connection * const state, LOG(NOTICE, "Client AUTH with protocol version 0x%X", state->used_protocol_version); /* user/pass authentication part - exemplary */ - if (strncmp(auth_pkt->login, "username", sizeof(auth_pkt->login)) == 0 && - strncmp(auth_pkt->passphrase, "passphrase", sizeof(auth_pkt->passphrase)) == 0) { + if (strncmp(auth_pkt->login, opts.user, sizeof(auth_pkt->login)) == 0 && + strncmp(auth_pkt->passphrase, opts.pass, sizeof(auth_pkt->passphrase)) == 0) { LOG(NOTICE, "Username '%.*s' with passphrase '%.*s' logged in", @@ -319,6 +319,7 @@ int main(int argc, char ** argv) LOG(ERROR, "Invalid host/port"); return 2; } + LOG(NOTICE, "Host: %s, Port: %s, User: %s, Pass: %s", opts.host, opts.port, opts.user, opts.pass); LOG(NOTICE, "Resolving %s:%s..", opts.host, opts.port); gai_errno = hostname_to_address(opts.host, opts.port, &connect_addresses); if (gai_errno != 0) { |