change license on these with approval from Anthony and Mike

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5940 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-10-17 19:18:17 +00:00
parent c6231acb7c
commit f8ccd20504
1 changed files with 32 additions and 21 deletions

View File

@ -1,20 +1,34 @@
/* /*
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application * Copyright (c) 2007, Anthony Minessale II
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com> * All rights reserved.
* *
* Version: MPL 1.1 * Redistribution and use in source and binary forms, with or without
* * modification, are permitted provided that the following conditions
* The contents of this file are subject to the Mozilla Public License Version * are met:
* 1.1 (the "License"); you may not use this file except in compliance with *
* the License. You may obtain a copy of the License at * * Redistributions of source code must retain the above copyright
* http://www.mozilla.org/MPL/ * notice, this list of conditions and the following disclaimer.
* *
* Software distributed under the License is distributed on an "AS IS" basis, * * Redistributions in binary form must reproduce the above copyright
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * notice, this list of conditions and the following disclaimer in the
* for the specific language governing rights and limitations under the * documentation and/or other materials provided with the distribution.
* License. *
* * * Neither the name of the original author; nor the names of any contributors
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application * may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* The Initial Developer of the Original Code is * The Initial Developer of the Original Code is
* Anthony Minessale II <anthmct@yahoo.com> * Anthony Minessale II <anthmct@yahoo.com>
@ -29,6 +43,7 @@
* mod_say_en.c -- Say for English * mod_say_en.c -- Say for English
* *
*/ */
#include <switch.h> #include <switch.h>
#include <math.h> #include <math.h>
#include <ctype.h> #include <ctype.h>
@ -517,10 +532,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_say_en_load)
say_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_SAY_INTERFACE); say_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_SAY_INTERFACE);
say_interface->interface_name = "en"; say_interface->interface_name = "en";
say_interface->say_function = en_say; say_interface->say_function = en_say;
say_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_SAY_INTERFACE);
say_interface->interface_name = "es";
say_interface->say_function = en_say;
/* indicate that the module should continue to be loaded */ /* indicate that the module should continue to be loaded */
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;