From bd2dc6141b59d8fe67e7765b5dfce5b819ed7e33 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Thu, 3 Mar 2016 14:09:57 +0100 Subject: tools: irm: Provide all IRM calls This commit makes all IRM calls available to the user of the 'irm' tool. The bootstrap_ipcp call does not yet take the anything except the AP name. This will be added once we stabilize what should be configurable in the IPCP. --- src/tools/irm/irm_bootstrap_ipcp.c | 40 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) (limited to 'src/tools/irm/irm_bootstrap_ipcp.c') diff --git a/src/tools/irm/irm_bootstrap_ipcp.c b/src/tools/irm/irm_bootstrap_ipcp.c index ca0fba0e..6b640c14 100644 --- a/src/tools/irm/irm_bootstrap_ipcp.c +++ b/src/tools/irm/irm_bootstrap_ipcp.c @@ -21,12 +21,48 @@ */ #include +#include +#include #include "irm_ops.h" +#include "irm_utils.h" + +static void usage() +{ + /* FIXME: Add dif_info stuff */ + printf("Usage: irm bootstrap_ipcp\n" + " ap \n" + " [api ]\n" + " [ae ]\n"); +} + int do_bootstrap_ipcp(int argc, char ** argv) { - printf("Nothing here in %s\n", __FUNCTION__); + rina_name_t name; + struct dif_info info; + + name.ap_name = NULL; + name.api_id = 0; + name.ae_name = ""; + name.aei_id = 0; + + while (argc > 0) { + if (!parse_name(argv, &name)) { + printf("\"%s\" is unknown, try \"irm " + "enroll_ipcp\".\n", *argv); + return -1; + } + + argc -= 2; + argv += 2; + } + + if (name.ap_name == NULL) { + usage(); + return -1; + } - return -1; + return irm_bootstrap_ipcp(name, info); } -- cgit v1.2.3