summaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 31666e3a..0a120b10 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -143,6 +143,45 @@ command_t* register_command(command_context_t *context, command_t *parent, char
return c;
}
+int unregister_all_commands(command_context_t *context)
+{
+ command_t *c, *c2;
+
+ unique_length_dirty = 1;
+
+ if (context == NULL)
+ return ERROR_OK;
+
+
+ while(NULL != context->commands)
+ {
+ c = context->commands;
+
+ while(NULL != c->children)
+ {
+ c2 = c->children;
+ c->children = c->children->next;
+ free(c2->name);
+ c2->name = NULL;
+ free(c2->help);
+ c2->help = NULL;
+ free(c2);
+ c2 = NULL;
+ }
+
+ context->commands = context->commands->next;
+
+ free(c->name);
+ c->name = NULL;
+ free(c->help);
+ c->help = NULL;
+ free(c);
+ c = NULL;
+ }
+
+ return ERROR_OK;
+}
+
int unregister_command(command_context_t *context, char *name)
{
command_t *c, *p = NULL, *c2;