From fbddaa32a9bd68399ba8608b7666107240086082 Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Sun, 21 Aug 2016 22:53:26 +0200 Subject: tools: Add missing files --- src/tools/irm/irm_bind_ipcp.c | 80 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/tools/irm/irm_bind_ipcp.c (limited to 'src/tools/irm/irm_bind_ipcp.c') diff --git a/src/tools/irm/irm_bind_ipcp.c b/src/tools/irm/irm_bind_ipcp.c new file mode 100644 index 00000000..2d517994 --- /dev/null +++ b/src/tools/irm/irm_bind_ipcp.c @@ -0,0 +1,80 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * Bind IPCP Instance to a name + * + * Dimitri Staessens + * Sander Vrijders + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include +#include + +#include +#include + +#include "irm_ops.h" +#include "irm_utils.h" + +static void usage() +{ + printf("Usage: irm bind ipcp name \n"); +} + +int do_bind_ipcp(int argc, char ** argv) +{ + char * ipcp = NULL; + char * name = NULL; + + pid_t * apis = NULL; + ssize_t len = 0; + + int i; + + while (argc > 0) { + if (matches(*argv, "name") == 0) { + name = *(argv + 1); + ++argv; + --argc; + } else if (matches(*argv, "ipcp") == 0) { + ipcp = *(argv + 1); + ++argv; + --argc; + } else { + printf("\"%s\" is unknown, try \"irm " + "bind ipcp\".\n", *argv); + return -1; + } + + ++argv; + --argc; + } + + if (ipcp == NULL || name == NULL) { + usage(); + return -1; + } + + len = irm_list_ipcps(ipcp, &apis); + + for (i = 0; i < len; ++i) + irm_bind_api(apis[i], name); + + free(apis); + + return 0; +} -- cgit v1.2.3