Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
d265cbfc
提交
d265cbfc
authored
4月 16, 2010
作者:
Anthony Minessale
提交者:
Brian West
4月 16, 2010
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
expand last patch to do hold as well and rename the command to uuid_phone_event
上级
33c05ead
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
33 行增加
和
15 行删除
+33
-15
switch_types.h
src/include/switch_types.h
+1
-1
mod_commands.c
src/mod/applications/mod_commands/mod_commands.c
+20
-11
mod_sofia.c
src/mod/endpoints/mod_sofia/mod_sofia.c
+10
-2
sofia.c
src/mod/endpoints/mod_sofia/sofia.c
+1
-0
switch_core_session.c
src/switch_core_session.c
+1
-1
没有找到文件。
src/include/switch_types.h
浏览文件 @
d265cbfc
...
...
@@ -690,7 +690,7 @@ typedef enum {
SWITCH_MESSAGE_INDICATE_PROXY_MEDIA
,
SWITCH_MESSAGE_INDICATE_APPLICATION_EXEC
,
SWITCH_MESSAGE_INDICATE_APPLICATION_EXEC_COMPLETE
,
SWITCH_MESSAGE_INDICATE_
AUTOANSWER
,
SWITCH_MESSAGE_INDICATE_
PHONE_EVENT
,
SWITCH_MESSAGE_INVALID
}
switch_core_session_message_types_t
;
...
...
src/mod/applications/mod_commands/mod_commands.c
浏览文件 @
d265cbfc
...
...
@@ -2319,7 +2319,7 @@ SWITCH_STANDARD_API(uuid_display_function)
#define SIMPLIFY_SYNTAX "<uuid>"
SWITCH_STANDARD_API
(
uuid_simplify_function
)
{
switch_status_t
status
=
SWITCH_STATUS_
SUCCESS
;
switch_status_t
status
=
SWITCH_STATUS_
FALSE
;
if
(
zstr
(
cmd
))
{
stream
->
write_function
(
stream
,
"-USAGE: %s
\n
"
,
SIMPLIFY_SYNTAX
);
...
...
@@ -2347,22 +2347,28 @@ SWITCH_STANDARD_API(uuid_simplify_function)
}
#define
AUTOANSWER
_SYNTAX "<uuid>"
SWITCH_STANDARD_API
(
uuid_
autoanswer
_function
)
#define
PHONE_EVENT
_SYNTAX "<uuid>"
SWITCH_STANDARD_API
(
uuid_
phone_event
_function
)
{
switch_status_t
status
=
SWITCH_STATUS_SUCCESS
;
switch_status_t
status
=
SWITCH_STATUS_FALSE
;
char
*
mycmd
=
NULL
,
*
argv
[
2
]
=
{
0
};
int
argc
=
0
;
if
(
zstr
(
cmd
))
{
stream
->
write_function
(
stream
,
"-USAGE: %s
\n
"
,
AUTOANSWER_SYNTAX
);
if
(
!
zstr
(
cmd
)
&&
(
mycmd
=
strdup
(
cmd
)))
{
argc
=
switch_separate_string
(
mycmd
,
' '
,
argv
,
(
sizeof
(
argv
)
/
sizeof
(
argv
[
0
])));
}
if
(
argc
<
1
)
{
stream
->
write_function
(
stream
,
"-USAGE: %s
\n
"
,
PHONE_EVENT_SYNTAX
);
}
else
{
switch_core_session_message_t
msg
=
{
0
};
switch_core_session_t
*
lsession
=
NULL
;
msg
.
message_id
=
SWITCH_MESSAGE_INDICATE_
AUTOANSWER
;
msg
.
string_arg
=
cmd
;
msg
.
message_id
=
SWITCH_MESSAGE_INDICATE_
PHONE_EVENT
;
msg
.
string_arg
=
argv
[
1
]
;
msg
.
from
=
__FILE__
;
if
((
lsession
=
switch_core_session_locate
(
cmd
)))
{
if
((
lsession
=
switch_core_session_locate
(
argv
[
0
]
)))
{
status
=
switch_core_session_receive_message
(
lsession
,
&
msg
);
switch_core_session_rwunlock
(
lsession
);
}
...
...
@@ -2374,6 +2380,8 @@ SWITCH_STANDARD_API(uuid_autoanswer_function)
stream
->
write_function
(
stream
,
"-ERR Operation Failed
\n
"
);
}
switch_safe_free
(
mycmd
);
return
SWITCH_STATUS_SUCCESS
;
}
...
...
@@ -4233,7 +4241,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_commands_load)
SWITCH_ADD_API
(
commands_api_interface
,
"user_data"
,
"find user data"
,
user_data_function
,
"<user>@<domain> [var|param|attr] <name>"
);
SWITCH_ADD_API
(
commands_api_interface
,
"user_exists"
,
"find a user"
,
user_exists_function
,
"<key> <user> <domain>"
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_audio"
,
"uuid_audio"
,
session_audio_function
,
AUDIO_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_autoanswer"
,
"Force a ringing channel offhook"
,
uuid_autoanswer_function
,
AUTOANSWER_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_break"
,
"Break"
,
break_function
,
BREAK_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_bridge"
,
"uuid_bridge"
,
uuid_bridge_function
,
""
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_broadcast"
,
"broadcast"
,
uuid_broadcast_function
,
BROADCAST_SYNTAX
);
...
...
@@ -4251,6 +4258,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_commands_load)
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_loglevel"
,
"set loglevel on session"
,
uuid_loglevel
,
UUID_LOGLEVEL_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_media"
,
"media"
,
uuid_media_function
,
MEDIA_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_park"
,
"Park Channel"
,
park_function
,
PARK_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_phone_event"
,
"Send and event to the phone"
,
uuid_phone_event_function
,
PHONE_EVENT_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_preprocess"
,
"Pre-process Channel"
,
preprocess_function
,
PREPROCESS_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_record"
,
"session record"
,
session_record_function
,
SESS_REC_SYNTAX
);
SWITCH_ADD_API
(
commands_api_interface
,
"uuid_recv_dtmf"
,
"receive dtmf digits"
,
uuid_recv_dtmf_function
,
UUID_RECV_DTMF_SYNTAX
);
...
...
@@ -4332,7 +4340,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_commands_load)
switch_console_set_complete
(
"add uuid_audio ::console::list_uuid start write mute"
);
switch_console_set_complete
(
"add uuid_audio ::console::list_uuid start write level"
);
switch_console_set_complete
(
"add uuid_audio ::console::list_uuid stop"
);
switch_console_set_complete
(
"add uuid_autoanswer ::console::list_uuid"
);
switch_console_set_complete
(
"add uuid_break ::console::list_uuid all"
);
switch_console_set_complete
(
"add uuid_break ::console::list_uuid both"
);
switch_console_set_complete
(
"add uuid_bridge ::console::list_uuid ::console::list_uuid"
);
...
...
@@ -4358,6 +4365,8 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_commands_load)
switch_console_set_complete
(
"add uuid_loglevel ::console::list_uuid debug"
);
switch_console_set_complete
(
"add uuid_media ::console::list_uuid"
);
switch_console_set_complete
(
"add uuid_park ::console::list_uuid"
);
switch_console_set_complete
(
"add uuid_phone_event ::console::list_uuid talk"
);
switch_console_set_complete
(
"add uuid_phone_event ::console::list_uuid hold"
);
switch_console_set_complete
(
"add uuid_preprocess ::console::list_uuid"
);
switch_console_set_complete
(
"add uuid_record ::console::list_uuid"
);
switch_console_set_complete
(
"add uuid_recv_dtmf ::console::list_uuid"
);
...
...
src/mod/endpoints/mod_sofia/mod_sofia.c
浏览文件 @
d265cbfc
...
...
@@ -1496,9 +1496,17 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
}
break
;
case
SWITCH_MESSAGE_INDICATE_
AUTOANSWER
:
case
SWITCH_MESSAGE_INDICATE_
PHONE_EVENT
:
{
nua_notify
(
tech_pvt
->
nh
,
NUTAG_NEWSUB
(
1
),
NUTAG_SUBSTATE
(
nua_substate_active
),
SIPTAG_EVENT_STR
(
"talk"
),
TAG_END
());
const
char
*
event
=
"talk"
;
if
(
!
zstr
(
msg
->
string_arg
)
&&
strcasecmp
(
msg
->
string_arg
,
event
))
{
if
(
!
strcasecmp
(
msg
->
string_arg
,
"hold"
))
{
event
=
"hold"
;
}
else
{
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG
(
session
),
SWITCH_LOG_WARNING
,
"Invalid event.
\n
"
);
}
}
nua_notify
(
tech_pvt
->
nh
,
NUTAG_NEWSUB
(
1
),
NUTAG_SUBSTATE
(
nua_substate_active
),
SIPTAG_EVENT_STR
(
event
),
TAG_END
());
}
break
;
case
SWITCH_MESSAGE_INDICATE_SIMPLIFY
:
...
...
src/mod/endpoints/mod_sofia/sofia.c
浏览文件 @
d265cbfc
...
...
@@ -1371,6 +1371,7 @@ void *SWITCH_THREAD_FUNC sofia_profile_thread_run(switch_thread_t *thread, void
NUTAG_ALLOW
(
"INFO"
),
NUTAG_ALLOW
(
"NOTIFY"
),
NUTAG_ALLOW_EVENTS
(
"talk"
),
NUTAG_ALLOW_EVENTS
(
"hold"
),
NUTAG_SESSION_TIMER
(
profile
->
session_timeout
),
NTATAG_MAX_PROCEEDING
(
profile
->
max_proceeding
),
TAG_IF
(
profile
->
pres_type
,
NUTAG_ALLOW
(
"PUBLISH"
)),
...
...
src/switch_core_session.c
浏览文件 @
d265cbfc
...
...
@@ -555,7 +555,7 @@ static const char *message_names[] = {
"PROXY_MEDIA"
,
"APPLICATION_EXEC"
,
"APPLICATION_EXEC_COMPLETE"
,
"
AUTOANSWER
"
,
"
PHONE_EVENT
"
,
"INVALID"
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论