this code absolutely doesn't work

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2745 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2006-09-18 17:37:46 +00:00
parent c8ba03eec2
commit b2c6786f25
1 changed files with 3 additions and 27 deletions

View File

@ -42,11 +42,8 @@
#include <ruby.h> #include <ruby.h>
const char modname[] = "mod_ruby"; const char modname[] = "mod_ruby";
static void ruby_function(switch_core_session_t *session, char *data) static void ruby_function(switch_core_session_t *session, char *data)
{ {
char *uuid = switch_core_session_get_uuid(session); char *uuid = switch_core_session_get_uuid(session);
@ -56,7 +53,6 @@ static void ruby_function(switch_core_session_t *session, char *data)
int argc, state; int argc, state;
char *argv[5]; char *argv[5];
char ruby_code[1024]; char ruby_code[1024];
//void*** tsrm_ls = NULL;
snprintf(mydata, len, "%s %s", uuid, data); snprintf(mydata, len, "%s %s", uuid, data);
@ -78,8 +74,6 @@ static void ruby_function(switch_core_session_t *session, char *data)
state = ruby_exec(); state = ruby_exec();
state = ruby_cleanup(state); state = ruby_cleanup(state);
ruby_finalize(); ruby_finalize();
} }
static const switch_application_interface_t ruby_application_interface = { static const switch_application_interface_t ruby_application_interface = {
@ -105,24 +99,6 @@ SWITCH_MOD_DECLARE(switch_status_t) switch_module_load(const switch_loadable_mod
/* connect my internal structure to the blank pointer passed to me */ /* connect my internal structure to the blank pointer passed to me */
*module_interface = &ruby_module_interface; *module_interface = &ruby_module_interface;
//switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Hello World!\n");
/* indicate that the module should continue to be loaded */ /* indicate that the module should continue to be loaded */
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }
/*
Called when the system shuts down
SWITCH_MOD_DECLARE(switch_status) switch_module_shutdown(void)
{
return SWITCH_STATUS_SUCCESS;
}
*/
/*
If it exists, this is called in it's own thread when the module-load completes
SWITCH_MOD_DECLARE(switch_status) switch_module_shutdown(void)
{
return SWITCH_STATUS_SUCCESS;
}
*/