int unload_module( void ) {
	ast_log( LOG_NOTICE, "unloading " APP_CONFERENCE_NAME " module\n" );
	STANDARD_HANGUP_LOCALUSERS;
	unregister_conference_cli();
	ast_custom_function_unregister(&acf_nconfcount);
	return ast_unregister_application( app ) ;
}
int unload_module( void ) {
	int res = 0;
	cw_log( LOG_NOTICE, "unloading " APP_CONFERENCE_NAME " module\n" );
	STANDARD_HANGUP_LOCALUSERS;
	unregister_conference_cli();
	res |= cw_unregister_application( conference_app ) ;
	return res;
}
Exemple #3
0
static int unload_module( void )
{
	ast_log( LOG_NOTICE, "unloading app_conference module\n" ) ;

	ast_module_user_hangup_all();

	unregister_conference_cli() ;

	return ast_unregister_application( app ) ;
}
static int unload_module( void )
{
	int res = 0;

	ast_log( LOG_NOTICE, "Unloading app_vonference module\n" ) ;

	ast_module_user_hangup_all();

	unregister_conference_cli() ;

	res |= ast_unregister_application( app ) ;
	res |= ast_unregister_application( app2 ) ;

	dealloc_conference() ;
	
	return res ;
}