00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include "asterisk.h"
00029
00030 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 229460 $")
00031
00032 #include "asterisk/file.h"
00033 #include "asterisk/channel.h"
00034 #include "asterisk/pbx.h"
00035 #include "asterisk/module.h"
00036 #include "asterisk/lock.h"
00037 #include "asterisk/app.h"
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 static char *app = "SoftHangup";
00063
00064 enum {
00065 OPTION_ALL = (1 << 0),
00066 };
00067
00068 AST_APP_OPTIONS(app_opts,{
00069 AST_APP_OPTION('a', OPTION_ALL),
00070 });
00071
00072 static int softhangup_exec(struct ast_channel *chan, const char *data)
00073 {
00074 struct ast_channel *c = NULL;
00075 char *cut, *opts[0];
00076 char name[AST_CHANNEL_NAME] = "", *parse;
00077 struct ast_flags flags = {0};
00078 int lenmatch;
00079 AST_DECLARE_APP_ARGS(args,
00080 AST_APP_ARG(channel);
00081 AST_APP_ARG(options);
00082 );
00083 struct ast_channel_iterator *iter;
00084
00085 if (ast_strlen_zero(data)) {
00086 ast_log(LOG_WARNING, "SoftHangup requires an argument (Technology/resource)\n");
00087 return 0;
00088 }
00089
00090 parse = ast_strdupa(data);
00091 AST_STANDARD_APP_ARGS(args, parse);
00092
00093 if (args.argc == 2)
00094 ast_app_parse_options(app_opts, &flags, opts, args.options);
00095 lenmatch = strlen(args.channel);
00096
00097 if (!(iter = ast_channel_iterator_by_name_new(args.channel, lenmatch))) {
00098 return -1;
00099 }
00100
00101 while ((c = ast_channel_iterator_next(iter))) {
00102 ast_channel_lock(c);
00103 ast_copy_string(name, c->name, sizeof(name));
00104 if (ast_test_flag(&flags, OPTION_ALL)) {
00105
00106 if (!strcmp(c->tech->type, "CAPI")) {
00107 cut = strrchr(name, '/');
00108
00109 } else {
00110
00111 cut = strrchr(name,'-');
00112 }
00113
00114 if (cut)
00115 *cut = 0;
00116 }
00117 if (!strcasecmp(name, args.channel)) {
00118 ast_log(LOG_WARNING, "Soft hanging %s up.\n", c->name);
00119 ast_softhangup(c, AST_SOFTHANGUP_EXPLICIT);
00120 if (!ast_test_flag(&flags, OPTION_ALL)) {
00121 ast_channel_unlock(c);
00122 c = ast_channel_unref(c);
00123 break;
00124 }
00125 }
00126 ast_channel_unlock(c);
00127 c = ast_channel_unref(c);
00128 }
00129
00130 ast_channel_iterator_destroy(iter);
00131
00132 return 0;
00133 }
00134
00135 static int unload_module(void)
00136 {
00137 return ast_unregister_application(app);
00138 }
00139
00140 static int load_module(void)
00141 {
00142 return ast_register_application_xml(app, softhangup_exec);
00143 }
00144
00145 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Hangs up the requested channel");