diff options
Diffstat (limited to 'src/tools/irm')
-rw-r--r-- | src/tools/irm/irm_bind_ipcp.c | 80 | ||||
-rw-r--r-- | src/tools/irm/irm_unbind_ipcp.c | 81 |
2 files changed, 161 insertions, 0 deletions
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 <dimitri.staessens@intec.ugent.be> + * Sander Vrijders <sander.vrijders@intec.ugent.be> + * + * 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 <stdio.h> +#include <stdlib.h> + +#include <ouroboros/irm.h> +#include <ouroboros/errno.h> + +#include "irm_ops.h" +#include "irm_utils.h" + +static void usage() +{ + printf("Usage: irm bind ipcp <name> name <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; +} diff --git a/src/tools/irm/irm_unbind_ipcp.c b/src/tools/irm/irm_unbind_ipcp.c new file mode 100644 index 00000000..db310e05 --- /dev/null +++ b/src/tools/irm/irm_unbind_ipcp.c @@ -0,0 +1,81 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * Unbind name from IPCP Instance + * + * Dimitri Staessens <dimitri.staessens@intec.ugent.be> + * Sander Vrijders <sander.vrijders@intec.ugent.be> + * + * 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 <stdio.h> +#include <stdlib.h> + +#include <ouroboros/irm.h> +#include <ouroboros/errno.h> + +#include "irm_ops.h" +#include "irm_utils.h" + +static void usage() +{ + printf("Usage: irm unbind ipcp <name>\n" + " [name <name>, omit: remove all information.\n"); +} + +int do_unbind_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 " + "unbind ipcp\".\n", *argv); + return -1; + } + + ++argv; + --argc; + } + + if (ipcp == NULL) { + usage(); + return -1; + } + + len = irm_list_ipcps(ipcp, &apis); + + for (i = 0; i < len; ++i) + irm_unbind_api(apis[i], name); + + free(apis); + + return 0; +} |