it's a good idea to unregister everything before calling STANDARD_HANGUP_LOCALUSERS

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6828 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-10-18 22:52:21 +00:00
parent 907fd55883
commit 29829640bf
85 changed files with 672 additions and 226 deletions

View File

@@ -333,17 +333,26 @@ static int macro_exit_exec(struct ast_channel *chan, void *data)
int unload_module(void)
{
int res;
res = ast_unregister_application(if_app);
res |= ast_unregister_application(exit_app);
res |= ast_unregister_application(app);
STANDARD_HANGUP_LOCALUSERS;
ast_unregister_application(if_app);
ast_unregister_application(exit_app);
return ast_unregister_application(app);
return res;
}
int load_module(void)
{
ast_register_application(exit_app, macro_exit_exec, exit_synopsis, exit_descrip);
ast_register_application(if_app, macroif_exec, if_synopsis, if_descrip);
return ast_register_application(app, macro_exec, synopsis, descrip);
int res;
res = ast_register_application(exit_app, macro_exit_exec, exit_synopsis, exit_descrip);
res |= ast_register_application(if_app, macroif_exec, if_synopsis, if_descrip);
res |= ast_register_application(app, macro_exec, synopsis, descrip);
return res;
}
char *description(void)