whoops
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5428 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
7953a010f5
commit
b16a19a52f
|
@ -1817,7 +1817,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_dingaling_load)
|
|||
/* connect my internal structure to the blank pointer passed to me */
|
||||
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
||||
channel_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE);
|
||||
channel_endpoint_interface->interface_name = modname;
|
||||
channel_endpoint_interface->interface_name = "digngaling";
|
||||
channel_endpoint_interface->io_routines = &channel_io_routines;
|
||||
channel_endpoint_interface->state_handler = &channel_event_handlers;
|
||||
|
||||
|
|
|
@ -868,7 +868,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_iax_load)
|
|||
|
||||
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
||||
channel_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE);
|
||||
channel_endpoint_interface->interface_name = modname;
|
||||
channel_endpoint_interface->interface_name = "iax";
|
||||
channel_endpoint_interface->io_routines = &channel_io_routines;
|
||||
channel_endpoint_interface->state_handler = &channel_state_handlers;
|
||||
|
||||
|
|
|
@ -852,7 +852,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_portaudio_load)
|
|||
/* connect my internal structure to the blank pointer passed to me */
|
||||
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
||||
channel_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE);
|
||||
channel_endpoint_interface->interface_name = modname;
|
||||
channel_endpoint_interface->interface_name = "portaudio";
|
||||
channel_endpoint_interface->io_routines = &channel_io_routines;
|
||||
channel_endpoint_interface->state_handler = &channel_event_handlers;
|
||||
|
||||
|
|
|
@ -1353,7 +1353,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_woomera_load)
|
|||
/* connect my internal structure to the blank pointer passed to me */
|
||||
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
|
||||
woomera_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE);
|
||||
woomera_endpoint_interface->interface_name = modname;
|
||||
woomera_endpoint_interface->interface_name = "woomera";
|
||||
woomera_endpoint_interface->io_routines = &woomera_io_routines;
|
||||
woomera_endpoint_interface->state_handler = &woomera_event_handlers;
|
||||
|
||||
|
|
Loading…
Reference in New Issue