net/freeswitch: Updated to 1.0.6 (which allowed to eliminate patches), fixed network failure on startup, fixed OOM on exit, and moved logging of fs console output to file (on /tmp) instead of to syslog

git-svn-id: svn://svn.openwrt.org/openwrt/packages@20836 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cshore
2010-04-13 10:23:46 +00:00
parent f7b39a13eb
commit e41ad3e30c
11 changed files with 163 additions and 475 deletions

View File

@ -1,15 +0,0 @@
--- a/src/mod/endpoints/mod_sofia/sofia.c
+++ b/src/mod/endpoints/mod_sofia/sofia.c
@@ -1066,11 +1066,7 @@ void launch_sofia_profile_thread(sofia_p
static void logger(void *logarg, char const *fmt, va_list ap)
{
- if (fmt && ap) {
- switch_log_vprintf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, fmt, ap);
- } else if (fmt && !ap) {
- switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, "%s", fmt);
- }
+ switch_log_vprintf(SWITCH_CHANNEL_LOG_CLEAN, mod_sofia_globals.tracelevel, fmt, ap);
}
static su_log_t *sofia_get_logger(const char *name)