Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
a425177b
提交
a425177b
authored
9月 06, 2012
作者:
Kapil Gupta
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
adding new "fax-detect-evevt-type" field in config
上级
0c494497
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
63 行增加
和
4 行删除
+63
-4
media_gateway.c
src/mod/endpoints/mod_media_gateway/media_gateway.c
+28
-4
media_gateway_xml.c
src/mod/endpoints/mod_media_gateway/media_gateway_xml.c
+9
-0
mod_media_gateway.h
src/mod/endpoints/mod_media_gateway/mod_media_gateway.h
+26
-0
没有找到文件。
src/mod/endpoints/mod_media_gateway/media_gateway.c
浏览文件 @
a425177b
...
...
@@ -191,10 +191,34 @@ switch_status_t megaco_activate_termination(mg_termination_t *term)
switch_core_event_hook_add_recv_dtmf
(
session
,
mg_on_dtmf
);
if
(
term
->
type
==
MG_TERM_TDM
)
{
switch_core_session_execute_application_async
(
session
,
"spandsp_start_fax_detect"
,
"mg_notify cng 120 cng"
);
switch_core_session_execute_application_async
(
session
,
"spandsp_start_fax_detect"
,
"mg_notify ced 120 ced"
);
}
if
((
term
->
type
==
MG_TERM_TDM
)
&&
(
term
->
profile
)){
switch
(
term
->
profile
->
fax_detect_evt_type
){
case
MG_FAX_DETECT_EVENT_TYPE_CED
:
{
switch_core_session_execute_application_async
(
session
,
"spandsp_start_fax_detect"
,
"mg_notify ced 120 ced"
);
break
;
}
case
MG_FAX_DETECT_EVENT_TYPE_CNG
:
{
switch_core_session_execute_application_async
(
session
,
"spandsp_start_fax_detect"
,
"mg_notify cng 120 cng"
);
break
;
}
case
MG_FAX_DETECT_EVENT_TYPE_CNG_CED
:
{
switch_core_session_execute_application_async
(
session
,
"spandsp_start_fax_detect"
,
"mg_notify cng 120 cng"
);
switch_core_session_execute_application_async
(
session
,
"spandsp_start_fax_detect"
,
"mg_notify ced 120 ced"
);
break
;
}
case
MG_FAX_DETECT_EVENT_TYPE_DISABLE
:
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_INFO
,
"FAX detection Disable
\n
"
);
break
;
}
default:
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Invalid FAX detection Event[%d]
\n
"
,
term
->
profile
->
fax_detect_evt_type
);
break
;
}
}
}
switch_set_flag
(
term
,
MGT_ACTIVE
);
...
...
src/mod/endpoints/mod_media_gateway/media_gateway_xml.c
浏览文件 @
a425177b
...
...
@@ -71,6 +71,7 @@ switch_status_t config_profile(megaco_profile_t *profile, switch_bool_t reload)
}
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG
,
"rtp_ipaddr[%s], local ip[%s]
\n
"
,
profile
->
rtp_ipaddr
,
profile
->
my_ipaddr
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG
,
"fax_detect_evt_type[%s]
\n
"
,
mg_fax_detect_evt_type2str
(
profile
->
fax_detect_evt_type
));
if
(
SWITCH_STATUS_FALSE
==
(
status
=
modify_mg_profile_mid
(
profile
,
&
profile
->
mid
))){
goto
done
;
...
...
@@ -337,6 +338,13 @@ static switch_xml_config_item_t *get_instructions(megaco_profile_t *profile) {
{ "ILBC", MEGACO_CODEC_ILBC },
};
#endif
static
switch_xml_config_enum_item_t
opt_fax_detect_type_enum
[]
=
{
{
"CED"
,
MG_FAX_DETECT_EVENT_TYPE_CED
},
{
"CNG"
,
MG_FAX_DETECT_EVENT_TYPE_CNG
},
{
"CED_CNG"
,
MG_FAX_DETECT_EVENT_TYPE_CNG_CED
},
{
"DISABLE"
,
MG_FAX_DETECT_EVENT_TYPE_DISABLE
},
};
switch_xml_config_item_t
instructions
[]
=
{
/* parameter name type reloadable pointer default value options structure */
...
...
@@ -355,6 +363,7 @@ static switch_xml_config_item_t *get_instructions(megaco_profile_t *profile) {
SWITCH_CONFIG_ITEM
(
"codec-prefs"
,
SWITCH_CONFIG_STRING
,
0
,
&
profile
->
codec_prefs
,
""
,
&
switch_config_string_strdup
,
""
,
"codec preferences, coma-separated"
),
SWITCH_CONFIG_ITEM
(
"license"
,
SWITCH_CONFIG_STRING
,
0
,
&
profile
->
license
,
"/usr/local/nsg/conf/license.txt"
,
&
switch_config_string_strdup
,
""
,
"License file"
),
SWITCH_CONFIG_ITEM
(
"rtp-ip"
,
SWITCH_CONFIG_STRING
,
CONFIG_RELOADABLE
,
&
profile
->
rtp_ipaddr
,
""
,
&
switch_config_string_strdup
,
""
,
"rtp ip"
),
SWITCH_CONFIG_ITEM
(
"fax-detect-event-type"
,
SWITCH_CONFIG_ENUM
,
CONFIG_RELOADABLE
,
&
profile
->
fax_detect_evt_type
,
MG_FAX_DETECT_EVENT_TYPE_CNG_CED
,
&
opt_fax_detect_type_enum
,
""
,
"fax-detect-event-type"
),
SWITCH_CONFIG_ITEM_END
()
};
...
...
src/mod/endpoints/mod_media_gateway/mod_media_gateway.h
浏览文件 @
a425177b
...
...
@@ -150,6 +150,31 @@ static inline mg_media_type_t mg_media_type_parse(const char *str) {
return
MGM_INVALID
;
}
typedef
enum
{
MG_FAX_DETECT_EVENT_TYPE_NONE
=
0
,
MG_FAX_DETECT_EVENT_TYPE_CED
,
MG_FAX_DETECT_EVENT_TYPE_CNG
,
MG_FAX_DETECT_EVENT_TYPE_CNG_CED
,
MG_FAX_DETECT_EVENT_TYPE_DISABLE
,
MG_FAX_DETECT_EVENT_TYPE_INVALID
,
}
mg_fax_detect_event_type_t
;
static
inline
const
char
*
mg_fax_detect_evt_type2str
(
mg_fax_detect_event_type_t
type
)
{
switch
(
type
)
{
case
MG_FAX_DETECT_EVENT_TYPE_CED
:
return
"CED"
;
case
MG_FAX_DETECT_EVENT_TYPE_CNG
:
return
"CNG"
;
case
MG_FAX_DETECT_EVENT_TYPE_CNG_CED
:
return
"CED AND CNG"
;
case
MG_FAX_DETECT_EVENT_TYPE_DISABLE
:
return
"DISABLE"
;
default:
return
"Invalid"
;
}
return
NULL
;
}
struct
mg_context_s
{
uint32_t
context_id
;
mg_termination_t
*
terminations
[
MG_CONTEXT_MAX_TERMS
];
...
...
@@ -232,6 +257,7 @@ struct megaco_profile_s {
int
inact_tmr
;
/* inactivity timer value */
int
peer_active
;
/* inactivity timer value */
uint32_t
inact_tmr_task_id
;
/* FS timer scheduler task-id */
mg_fax_detect_event_type_t
fax_detect_evt_type
;
switch_thread_rwlock_t
*
contexts_rwlock
;
uint32_t
next_context_id
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论