From f12dee199c5f6207ddddafd26c85136daa6842ad Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 3 Nov 2018 17:33:25 +0000 Subject: add 401 login handling to monkey frontend --- frontends/monkey/main.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'frontends/monkey/main.c') diff --git a/frontends/monkey/main.c b/frontends/monkey/main.c index 7ef4208ca..4fdc5ebc2 100644 --- a/frontends/monkey/main.c +++ b/frontends/monkey/main.c @@ -393,6 +393,11 @@ main(int argc, char **argv) die("options handler failed to register"); } + ret = monkey_register_handler("LOGIN", monkey_login_handle_command); + if (ret != NSERROR_OK) { + die("login handler failed to register"); + } + moutf(MOUT_GENERIC, "STARTED"); monkey_run(); -- cgit v1.2.3