if (dtb->len == 2) {
if (*dtb->data == '*') {
- printf("%s\n", dtb->data);
dtb->front = dtb->data;
dtb->len = 0;
*dtb->data = '\0';
/* connect my internal structure to the blank pointer passed to me */
*module_interface = &rss_module_interface;
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Hello World!\n");
-
/* indicate that the module should continue to be loaded */
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;
- }
-*/