[Freeswitch-branches] [commit] r12242 - freeswitch/branches/ctrix/mod_airpe
FreeSWITCH SVN
ctrix at freeswitch.org
Mon Feb 23 02:42:34 PST 2009
Author: ctrix
Date: Mon Feb 23 04:42:34 2009
New Revision: 12242
Log:
Shutdown function for each interface
Modified:
freeswitch/branches/ctrix/mod_airpe/airpe_if_osx.c
freeswitch/branches/ctrix/mod_airpe/airpe_if_win32.c
freeswitch/branches/ctrix/mod_airpe/airpe_if_x11.c
freeswitch/branches/ctrix/mod_airpe/mod_airpe.h
Modified: freeswitch/branches/ctrix/mod_airpe/airpe_if_osx.c
==============================================================================
--- freeswitch/branches/ctrix/mod_airpe/airpe_if_osx.c (original)
+++ freeswitch/branches/ctrix/mod_airpe/airpe_if_osx.c Mon Feb 23 04:42:34 2009
@@ -69,6 +69,10 @@
}
}
+switch_status_t airpe_interface_shutdown(airpe_interface_t *airpe) {
+ return SWITCH_STATUS_SUCCESS;
+}
+
/*****************************************************************************
THREADS
*****************************************************************************/
Modified: freeswitch/branches/ctrix/mod_airpe/airpe_if_win32.c
==============================================================================
--- freeswitch/branches/ctrix/mod_airpe/airpe_if_win32.c (original)
+++ freeswitch/branches/ctrix/mod_airpe/airpe_if_win32.c Mon Feb 23 04:42:34 2009
@@ -103,6 +103,10 @@
return SWITCH_STATUS_SUCCESS;
}
+switch_status_t airpe_interface_shutdown(airpe_interface_t *airpe) {
+ return SWITCH_STATUS_SUCCESS;
+}
+
/*****************************************************************************
THREADS
*****************************************************************************/
Modified: freeswitch/branches/ctrix/mod_airpe/airpe_if_x11.c
==============================================================================
--- freeswitch/branches/ctrix/mod_airpe/airpe_if_x11.c (original)
+++ freeswitch/branches/ctrix/mod_airpe/airpe_if_x11.c Mon Feb 23 04:42:34 2009
@@ -212,7 +212,9 @@
return SWITCH_STATUS_SUCCESS;
}
-
+switch_status_t airpe_interface_shutdown(airpe_interface_t *airpe) {
+ return SWITCH_STATUS_SUCCESS;
+}
/*****************************************************************************
THREADS
Modified: freeswitch/branches/ctrix/mod_airpe/mod_airpe.h
==============================================================================
--- freeswitch/branches/ctrix/mod_airpe/mod_airpe.h (original)
+++ freeswitch/branches/ctrix/mod_airpe/mod_airpe.h Mon Feb 23 04:42:34 2009
@@ -232,6 +232,8 @@
switch_status_t airpe_skype_avalaible(skype_window_handler_t *window);
switch_status_t skype_restart( skype_window_handler_t *airpe, const char *params );
switch_status_t airpe_skype_send_message(skype_window_handler_t *window, const char *message_P);
+switch_status_t airpe_interface_shutdown(airpe_interface_t *airpe);
+
void *SWITCH_THREAD_FUNC airpe_skype_thread(switch_thread_t * thread, void *obj);
/* For Emacs:
More information about the Freeswitch-branches
mailing list