Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
e603c17d
提交
e603c17d
authored
11月 13, 2013
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
try to improve performance of subscribe sip handler
上级
81a48a9e
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
sofia_glue.c
src/mod/endpoints/mod_sofia/sofia_glue.c
+1
-0
sofia_presence.c
src/mod/endpoints/mod_sofia/sofia_presence.c
+7
-8
没有找到文件。
src/mod/endpoints/mod_sofia/sofia_glue.c
浏览文件 @
e603c17d
...
...
@@ -2106,6 +2106,7 @@ int sofia_glue_init_sql(sofia_profile_t *profile)
"create index sr_orig_server_host on sip_registrations (orig_server_host)"
,
"create index sr_orig_hostname on sip_registrations (orig_hostname)"
,
"create index ss_call_id on sip_subscriptions (call_id)"
,
"create index ss_multi on sip_subscriptions (call_id, profile_name, hostname)"
,
"create index ss_hostname on sip_subscriptions (hostname)"
,
"create index ss_network_ip on sip_subscriptions (network_ip)"
,
"create index ss_sip_user on sip_subscriptions (sip_user)"
,
...
...
src/mod/endpoints/mod_sofia/sofia_presence.c
浏览文件 @
e603c17d
...
...
@@ -3587,8 +3587,7 @@ void sofia_presence_handle_sip_i_subscribe(int status,
int
found_proto
=
0
;
const
char
*
use_to_tag
;
char
to_tag
[
13
]
=
""
;
char
buf
[
32
]
=
""
;
int
subbed
=
0
;
char
buf
[
80
]
=
""
;
if
(
!
sip
)
{
return
;
...
...
@@ -3751,8 +3750,8 @@ void sofia_presence_handle_sip_i_subscribe(int status,
}
if
((
sub_state
!=
nua_substate_terminated
))
{
sql
=
switch_mprintf
(
"select c
ount(*) from sip_subscriptions where call_id='%q' and hostname='%q' and profile_
name='%q'"
,
call_id
,
mod_sofia_globals
.
hostname
,
profile
->
name
);
sql
=
switch_mprintf
(
"select c
all_id from sip_subscriptions where call_id='%q' and profile_name='%q' and host
name='%q'"
,
call_id
,
profile
->
name
,
mod_sofia_globals
.
host
name
);
sofia_glue_execute_sql2str
(
profile
,
profile
->
dbh_mutex
,
sql
,
buf
,
sizeof
(
buf
));
...
...
@@ -3763,7 +3762,7 @@ void sofia_presence_handle_sip_i_subscribe(int status,
switch_safe_free
(
sql
);
if
(
(
subbed
=
atoi
(
buf
))
>
0
)
{
if
(
!
zstr
(
buf
)
)
{
sub_state
=
nua_substate_active
;
}
}
...
...
@@ -3774,9 +3773,9 @@ void sofia_presence_handle_sip_i_subscribe(int status,
sql
=
switch_mprintf
(
"update sip_subscriptions "
"set expires=%ld "
"where
hostname='%q' and profile_name='%q' and call_id='%q' and profile_
name='%q'"
,
(
long
)
switch_epoch_time_now
(
NULL
)
+
exp_delta
,
mod_sofia_globals
.
hostname
,
profile
->
name
,
call_id
,
profile
->
name
);
"where
call_id='%q' and profile_name='%q' and host
name='%q'"
,
(
long
)
switch_epoch_time_now
(
NULL
)
+
exp_delta
,
call_id
,
profile
->
name
,
mod_sofia_globals
.
hostname
);
if
(
mod_sofia_globals
.
debug_presence
>
0
||
mod_sofia_globals
.
debug_sla
>
0
)
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论