Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
10cc4791
提交
10cc4791
authored
9月 16, 2013
作者:
Chris Rienzo
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
ssh://git.freeswitch.org:222/freeswitch
上级
27d2761a
fb318e3b
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
20 行增加
和
2 行删除
+20
-2
Freeswitch.2010.express.sln
Freeswitch.2010.express.sln
+11
-0
mod_fifo.c
src/mod/applications/mod_fifo/mod_fifo.c
+4
-1
mod_httapi.c
src/mod/applications/mod_httapi/mod_httapi.c
+1
-1
sofia.c
src/mod/endpoints/mod_sofia/sofia.c
+4
-0
没有找到文件。
Freeswitch.2010.express.sln
浏览文件 @
10cc4791
...
...
@@ -346,6 +346,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_math_fixed_tables", "l
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_cielab_luts", "libs\spandsp\src\msvc\make_cielab_luts.2010.vcxproj", "{85F0CF8C-C7AB-48F6-BA19-CC94CF87F981}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "make_t43_gray_code_tables", "libs\spandsp\src\msvc\make_t43_gray_code_tables.2010.vcxproj", "{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
All|Win32 = All|Win32
...
...
@@ -2086,6 +2088,15 @@ Global
{85F0CF8C-C7AB-48F6-BA19-CC94CF87F981}.Release|Win32.Build.0 = All|Win32
{85F0CF8C-C7AB-48F6-BA19-CC94CF87F981}.Release|x64.ActiveCfg = All|Win32
{85F0CF8C-C7AB-48F6-BA19-CC94CF87F981}.Release|x64.Build.0 = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.All|Win32.ActiveCfg = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.All|Win32.Build.0 = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.All|x64.ActiveCfg = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.Debug|Win32.ActiveCfg = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.Debug|Win32.Build.0 = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.Debug|x64.ActiveCfg = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.Release|Win32.ActiveCfg = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.Release|Win32.Build.0 = All|Win32
{EDDB8AB9-C53E-44C0-A620-0E86C2CBD5D5}.Release|x64.ActiveCfg = All|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
src/mod/applications/mod_fifo/mod_fifo.c
浏览文件 @
10cc4791
...
...
@@ -1637,7 +1637,6 @@ static void *SWITCH_THREAD_FUNC o_thread_run(switch_thread_t *thread, void *obj)
fifo_execute_sql_queued
(
&
sql
,
SWITCH_TRUE
,
SWITCH_TRUE
);
status
=
switch_ivr_originate
(
NULL
,
&
session
,
&
cause
,
originate_string
,
h
->
timeout
,
NULL
,
NULL
,
NULL
,
NULL
,
ovars
,
SOF_NONE
,
NULL
);
free
(
originate_string
);
if
(
status
!=
SWITCH_STATUS_SUCCESS
)
{
...
...
@@ -1694,6 +1693,10 @@ static void *SWITCH_THREAD_FUNC o_thread_run(switch_thread_t *thread, void *obj)
end:
if
(
originate_string
){
switch_safe_free
(
originate_string
);
}
switch_event_destroy
(
&
ovars
);
if
(
node
)
{
switch_mutex_lock
(
node
->
update_mutex
);
...
...
src/mod/applications/mod_httapi/mod_httapi.c
浏览文件 @
10cc4791
...
...
@@ -2343,7 +2343,7 @@ static char *load_cache_data(http_file_context_t *context, const char *url)
if
((
p
=
strchr
(
dext
,
'?'
)))
{
*
p
=
'\0'
;
ext
=
dext
;
}
else
free
(
dext
);
}
else
switch_safe_
free
(
dext
);
}
context
->
cache_file_base
=
switch_core_sprintf
(
context
->
pool
,
"%s%s%s"
,
globals
.
cache_path
,
SWITCH_PATH_SEPARATOR
,
digest
);
...
...
src/mod/endpoints/mod_sofia/sofia.c
浏览文件 @
10cc4791
...
...
@@ -9034,6 +9034,10 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia
switch_assert
(
sql
);
sofia_glue_execute_sql_now
(
profile
,
&
sql
,
SWITCH_TRUE
);
if
(
full_contact
)
{
su_free
(
nua_handle_home
(
tech_pvt
->
nh
),
full_contact
);
}
}
if
(
is_nat
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论