diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-28 14:43:16 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-28 14:43:16 +0200 |
commit | a14d696bdbc72754e8019fa9579d5a338cc85a05 (patch) | |
tree | 2533a574e03a9954b9eeaf7750219d3175ce8b99 /src/tools/irm/irm_bootstrap_ipcp.c | |
parent | d37add0f20c93432c0b4c12866810c124a7a18ec (diff) | |
download | ouroboros-a14d696bdbc72754e8019fa9579d5a338cc85a05.tar.gz ouroboros-a14d696bdbc72754e8019fa9579d5a338cc85a05.zip |
lib: Update irm.h API
Removes rina_name_t from that API. Passing ap_name and api_id as
params instead. The IRM tool has been updated accordingly. Some errors
in the build related to protobuf-c have also been resolved.
Diffstat (limited to 'src/tools/irm/irm_bootstrap_ipcp.c')
-rw-r--r-- | src/tools/irm/irm_bootstrap_ipcp.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/tools/irm/irm_bootstrap_ipcp.c b/src/tools/irm/irm_bootstrap_ipcp.c index 89950069..0843083d 100644 --- a/src/tools/irm/irm_bootstrap_ipcp.c +++ b/src/tools/irm/irm_bootstrap_ipcp.c @@ -21,6 +21,7 @@ */ #include <stdio.h> +#include <stdlib.h> #include <ouroboros/irm.h> #include <ouroboros/common.h> @@ -38,29 +39,32 @@ static void usage() int do_bootstrap_ipcp(int argc, char ** argv) { - rina_name_t name; + char * ap_name = NULL; + int api_id = 0; struct dif_config conf; conf.qosspecs = NULL; - name.ap_name = NULL; - name.api_id = 0; - while (argc > 0) { - if (!parse_name(argv, &name)) { + if (matches(*argv, "ap") == 0) { + ap_name = *(argv + 1); + } else if (matches(*argv, "api") == 0) { + api_id = atoi(*(argv + 1)); + } else { printf("\"%s\" is unknown, try \"irm " - "enroll_ipcp\".\n", *argv); + "destroy_ipcp\".\n", *argv); return -1; } + argc -= 2; argv += 2; } - if (name.ap_name == NULL) { + if (ap_name == NULL) { usage(); return -1; } - return irm_bootstrap_ipcp(name, conf); + return irm_bootstrap_ipcp(ap_name, api_id, &conf); } |