mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
First shot at unload_module in chan_skinny..
More to come. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43469 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4549,17 +4549,9 @@ static int load_module(void)
|
||||
|
||||
static int unload_module(void)
|
||||
{
|
||||
#if 0
|
||||
struct skinnysession *s;
|
||||
delete_devices();
|
||||
|
||||
/* close all IP connections */
|
||||
if (!ast_mutex_lock(&devicelock)) {
|
||||
/* Terminate tcp listener thread */
|
||||
} else {
|
||||
ast_log(LOG_WARNING, "Unable to lock the monitor\n");
|
||||
return -1;
|
||||
}
|
||||
if (!ast_mutex_lock(&monlock)) {
|
||||
ast_mutex_lock(&monlock);
|
||||
if (monitor_thread && (monitor_thread != AST_PTHREADT_STOP)) {
|
||||
pthread_cancel(monitor_thread);
|
||||
pthread_kill(monitor_thread, SIGURG);
|
||||
@@ -4567,11 +4559,9 @@ static int unload_module(void)
|
||||
}
|
||||
monitor_thread = AST_PTHREADT_STOP;
|
||||
ast_mutex_unlock(&monlock);
|
||||
} else {
|
||||
ast_log(LOG_WARNING, "Unable to lock the monitor\n");
|
||||
return -1;
|
||||
}
|
||||
if (!ast_mutex_lock(&iflock)) {
|
||||
|
||||
#if 0 /* XXX This is...funky. Will fix shortly */
|
||||
ast_mutex_lock(&sessionlock);
|
||||
/* Destroy all the interfaces and free their memory */
|
||||
p = iflist;
|
||||
while(p) {
|
||||
@@ -4582,19 +4572,17 @@ static int unload_module(void)
|
||||
free(pl);
|
||||
}
|
||||
iflist = NULL;
|
||||
ast_mutex_unlock(&iflock);
|
||||
} else {
|
||||
ast_log(LOG_WARNING, "Unable to lock the monitor\n");
|
||||
return -1;
|
||||
}
|
||||
ast_mutex_unlock(&sessionlock);
|
||||
#endif
|
||||
|
||||
ast_rtp_proto_unregister(&skinny_rtp);
|
||||
ast_channel_unregister(&skinny_tech);
|
||||
ast_cli_unregister_multiple(cli_skinny, sizeof(cli_skinny) / sizeof(struct ast_cli_entry));
|
||||
|
||||
close(skinnysock);
|
||||
sched_context_destroy(sched);
|
||||
|
||||
return 0;
|
||||
#endif
|
||||
return -1;
|
||||
}
|
||||
|
||||
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Skinny Client Control Protocol (Skinny)",
|
||||
|
Reference in New Issue
Block a user