summaryrefslogtreecommitdiff
path: root/frontends/monkey/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/monkey/main.c')
-rw-r--r--frontends/monkey/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/frontends/monkey/main.c b/frontends/monkey/main.c
index 4fdc5ebc2..87a486d33 100644
--- a/frontends/monkey/main.c
+++ b/frontends/monkey/main.c
@@ -398,6 +398,12 @@ main(int argc, char **argv)
die("login handler failed to register");
}
+ ret = monkey_register_handler("SSLCERT", monkey_sslcert_handle_command);
+ if (ret != NSERROR_OK) {
+ die("sslcert handler failed to register");
+ }
+
+
moutf(MOUT_GENERIC, "STARTED");
monkey_run();