FreeSWITCH API Documentation
1.7.0
|
Abstraction of an module endpoint interface This is the glue between the abstract idea of a "channel" and what is really going on under the hood. Each endpoint module fills out one of these tables and makes it available when a channel is created of it's paticular type. More...
#include <switch_module_interfaces.h>
Data Fields | |
const char * | interface_name |
switch_io_routines_t * | io_routines |
switch_state_handler_table_t * | state_handler |
void * | private_info |
switch_thread_rwlock_t * | rwlock |
int | refs |
switch_mutex_t * | reflock |
switch_loadable_module_interface_t * | parent |
struct switch_endpoint_interface * | next |
switch_core_recover_callback_t | recover_callback |
Abstraction of an module endpoint interface This is the glue between the abstract idea of a "channel" and what is really going on under the hood. Each endpoint module fills out one of these tables and makes it available when a channel is created of it's paticular type.
Definition at line 173 of file switch_module_interfaces.h.
const char* switch_endpoint_interface::interface_name |
the interface's name
Definition at line 175 of file switch_module_interfaces.h.
Referenced by switch_loadable_module_process(), and switch_loadable_module_unprocess().
switch_io_routines_t* switch_endpoint_interface::io_routines |
channel abstraction methods
Definition at line 178 of file switch_module_interfaces.h.
Referenced by perform_write(), and switch_core_session_outgoing_channel().
struct switch_endpoint_interface* switch_endpoint_interface::next |
Definition at line 194 of file switch_module_interfaces.h.
Referenced by switch_loadable_module_process(), and switch_loadable_module_unprocess().
switch_loadable_module_interface_t* switch_endpoint_interface::parent |
Definition at line 191 of file switch_module_interfaces.h.
void* switch_endpoint_interface::private_info |
private information
Definition at line 184 of file switch_module_interfaces.h.
switch_core_recover_callback_t switch_endpoint_interface::recover_callback |
Definition at line 196 of file switch_module_interfaces.h.
Referenced by recover_callback().
switch_mutex_t* switch_endpoint_interface::reflock |
Definition at line 188 of file switch_module_interfaces.h.
int switch_endpoint_interface::refs |
Definition at line 187 of file switch_module_interfaces.h.
switch_thread_rwlock_t* switch_endpoint_interface::rwlock |
Definition at line 186 of file switch_module_interfaces.h.
Referenced by switch_loadable_module_unprocess().
switch_state_handler_table_t* switch_endpoint_interface::state_handler |
state machine methods
Definition at line 181 of file switch_module_interfaces.h.
Referenced by switch_core_session_destroy_state(), switch_core_session_hangup_state(), switch_core_session_reporting_state(), and switch_core_session_run().