From 5fbd6a79efaeda854b16fb240c41f439a52bb1b2 Mon Sep 17 00:00:00 2001 From: Jeremy Lakeman Date: Thu, 20 Oct 2016 09:28:08 -0400 Subject: [PATCH] Add feature for meshmb cli to force linking into deamon --- meshmb.c | 2 ++ servald_features.c | 1 + 2 files changed, 3 insertions(+) diff --git a/meshmb.c b/meshmb.c index 2fa88439..f293f7ca 100644 --- a/meshmb.c +++ b/meshmb.c @@ -29,6 +29,8 @@ static int meshmb_send(keyring_identity *id, const char *message, size_t message return ret; } +DEFINE_FEATURE(cli_meshmb); + DEFINE_CMD(app_meshmb_send, 0, "Append a public broadcast message to your feed", "meshmb", "send" KEYRING_PIN_OPTIONS, "", "", "..."); diff --git a/servald_features.c b/servald_features.c index df59ed75..6abbf084 100644 --- a/servald_features.c +++ b/servald_features.c @@ -30,6 +30,7 @@ void servald_features() USE_FEATURE(cli_network); USE_FEATURE(cli_rhizome); USE_FEATURE(cli_meshms); + USE_FEATURE(cli_meshmb); USE_FEATURE(cli_monitor); USE_FEATURE(cli_msp_proxy); USE_FEATURE(cli_vomp_console);