Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
2dd7ab10
提交
2dd7ab10
authored
8月 10, 2012
作者:
Mathieu Rene
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'nsg-4.3' of git.sangoma.com:smg_freeswitch into nsg-4.3
上级
116a09e8
2df26cf7
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
278 行增加
和
142 行删除
+278
-142
media_gateway_cli.c
src/mod/endpoints/mod_media_gateway/media_gateway_cli.c
+66
-19
media_gateway_cmd_handler.c
...d/endpoints/mod_media_gateway/media_gateway_cmd_handler.c
+159
-112
media_gateway_utils.c
src/mod/endpoints/mod_media_gateway/media_gateway_utils.c
+45
-6
media_gateway_xml.c
src/mod/endpoints/mod_media_gateway/media_gateway_xml.c
+8
-5
没有找到文件。
src/mod/endpoints/mod_media_gateway/media_gateway_cli.c
浏览文件 @
2dd7ab10
...
...
@@ -16,6 +16,7 @@ switch_status_t megaco_profile_status(switch_stream_handle_t *stream, megaco_pro
switch_status_t
megaco_profile_xmlstatus
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_cfg
);
switch_status_t
megaco_profile_peer_xmlstatus
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_cfg
);
switch_status_t
handle_term_status_cli_cmd
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_profile
,
char
*
term_id
);
switch_status_t
handle_all_term_status_cli_cmd
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_profile
);
void
get_peer_xml_buffer
(
char
*
prntBuf
,
MgPeerSta
*
cfm
);
void
megaco_cli_print_usage
(
switch_stream_handle_t
*
stream
);
switch_status_t
handle_show_activecalls_cli_cmd
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_profile
);
...
...
@@ -188,21 +189,6 @@ switch_status_t mg_process_cli_cmd(const char *cmd, switch_stream_handle_t *stre
stream
->
write_function
(
stream
,
"-ERR No such profile
\n
"
);
}
/**********************************************************************************/
}
else
if
(
!
strcmp
(
argv
[
2
],
"termstatus"
))
{
/**********************************************************************************/
/* mg <mg-profile> termstatus <term-id> */
if
(
zstr
(
argv
[
3
]))
{
goto
usage
;
}
if
(
profile
){
megaco_profile_release
(
profile
);
handle_term_status_cli_cmd
(
stream
,
profile
,
argv
[
3
]);
}
else
{
stream
->
write_function
(
stream
,
"-ERR No such profile
\n
"
);
}
/**********************************************************************************/
}
else
if
(
!
strcmp
(
argv
[
2
],
"show"
))
{
/**********************************************************************************/
...
...
@@ -214,12 +200,25 @@ switch_status_t mg_process_cli_cmd(const char *cmd, switch_stream_handle_t *stre
if
(
profile
){
megaco_profile_release
(
profile
);
if
(
!
strcasecmp
(
argv
[
3
],
"activecalls"
)){
/* mg <mg-profile> show activecalls */
handle_show_activecalls_cli_cmd
(
stream
,
profile
);
}
}
else
{
/*******************************************************************/
}
else
if
(
!
strcasecmp
(
argv
[
3
],
"alltermstatus"
)){
/*******************************************************************/
/* mg <mg-profile> show alltermstatus */
handle_all_term_status_cli_cmd
(
stream
,
profile
);
}
else
if
(
!
strcasecmp
(
argv
[
3
],
"termstatus"
)){
/*******************************************************************/
/* mg <mg-profile> show termstatus <term-id> */
if
(
zstr
(
argv
[
4
]))
{
goto
usage
;
}
handle_term_status_cli_cmd
(
stream
,
profile
,
argv
[
4
]);
}
else
{
/*******************************************************************/
stream
->
write_function
(
stream
,
"-ERR No such profile
\n
"
);
}
}
/**********************************************************************************/
}
else
{
/**********************************************************************************/
...
...
@@ -271,7 +270,6 @@ void megaco_cli_print_usage(switch_stream_handle_t *stream)
stream
->
write_function
(
stream
,
"Usage: Profile Specific
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> start
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> stop
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> termstatus <term-id>
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> status
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> xmlstatus
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> peerxmlstatus
\n
"
);
...
...
@@ -280,6 +278,8 @@ void megaco_cli_print_usage(switch_stream_handle_t *stream)
stream
->
write_function
(
stream
,
"mg profile <profile-name> send ito notify
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> send cng <term-id>
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> show activecalls
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> show termstatus <term-id>
\n
"
);
stream
->
write_function
(
stream
,
"mg profile <profile-name> show alltermstatus
\n
"
);
stream
->
write_function
(
stream
,
"Usage: Logging
\n
"
);
stream
->
write_function
(
stream
,
"mg logging enable
\n
"
);
...
...
@@ -698,7 +698,54 @@ void get_peer_xml_buffer(char* prntBuf, MgPeerSta* cfm)
}
/******************************************************************************/
switch_status_t
handle_all_term_status_cli_cmd
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_profile
)
{
void
*
val
=
NULL
;
switch_hash_index_t
*
hi
=
NULL
;
mg_termination_t
*
term
=
NULL
;
const
void
*
var
;
if
(
!
mg_profile
){
stream
->
write_function
(
stream
,
"-ERR NULL profile
\n
"
);
return
SWITCH_STATUS_FALSE
;
}
stream
->
write_function
(
stream
,
" Termination Name"
);
stream
->
write_function
(
stream
,
"
\t
Termination State"
);
stream
->
write_function
(
stream
,
"
\t
Termination Type"
);
stream
->
write_function
(
stream
,
"
\t
Span-Id "
);
stream
->
write_function
(
stream
,
"
\t
Channel-Id "
);
for
(
hi
=
switch_hash_first
(
NULL
,
mg_profile
->
terminations
);
hi
;
hi
=
switch_hash_next
(
hi
))
{
switch_hash_this
(
hi
,
&
var
,
NULL
,
&
val
);
term
=
(
mg_termination_t
*
)
val
;
if
(
!
term
)
continue
;
stream
->
write_function
(
stream
,
"
\n
"
);
stream
->
write_function
(
stream
,
" %s"
,(
NULL
!=
term
->
name
)
?
term
->
name
:
"NULL"
);
if
(
MG_TERM_RTP
==
term
->
type
){
stream
->
write_function
(
stream
,
"
\t\t\t
IN-SERVICE"
);
}
else
{
stream
->
write_function
(
stream
,
"
\t\t\t
%s"
,
(
switch_test_flag
(
term
,
MG_IN_SERVICE
))
?
"IN-SERVICE"
:
"OUT-OF-SERVICE"
);
}
stream
->
write_function
(
stream
,
"
\t\t
%s"
,(
MG_TERM_RTP
==
term
->
type
)
?
"MG_TERM_RTP"
:
"MG_TERM_TDM"
);
if
(
MG_TERM_TDM
==
term
->
type
){
stream
->
write_function
(
stream
,
"
\t\t
%s"
,
(
NULL
!=
term
->
u
.
tdm
.
span_name
)
?
term
->
u
.
tdm
.
span_name
:
"NULL"
);
stream
->
write_function
(
stream
,
"
\t\t
%d"
,
term
->
u
.
tdm
.
channel
);
}
else
{
stream
->
write_function
(
stream
,
"
\t\t
-"
);
stream
->
write_function
(
stream
,
"
\t\t
-"
);
}
stream
->
write_function
(
stream
,
"
\n
"
);
}
return
SWITCH_STATUS_SUCCESS
;
}
/******************************************************************************/
switch_status_t
handle_term_status_cli_cmd
(
switch_stream_handle_t
*
stream
,
megaco_profile_t
*
mg_profile
,
char
*
term_id
)
{
mg_termination_t
*
term
=
NULL
;
...
...
src/mod/endpoints/mod_media_gateway/media_gateway_cmd_handler.c
浏览文件 @
2dd7ab10
差异被折叠。
点击展开。
src/mod/endpoints/mod_media_gateway/media_gateway_utils.c
浏览文件 @
2dd7ab10
...
...
@@ -452,24 +452,26 @@ void mgco_fill_t38_sdp_attr(CmSdpAttrSet *s, mg_termination_t* term, CmMemListCp
"CM_SDP_ATTR_T38_FAX: TYPE not present
\n
"
);
break
;
}
printf
(
"f->u.unknown.name.val[%s, len=%d]
\n
"
,
f
->
u
.
unknown
.
name
.
val
,
f
->
u
.
unknown
.
name
.
len
);
/* NOTE - Ideally i should not change ,whatever is coming we can return..due to
trillium issue forcefully coping the data...will remove once get trillium fix*/
if
(
f
->
type
.
val
==
CM_SDP_ATTR_T38_FAX_UNKNOWN
)
{
if
((
i
==
0
)
&&
term
->
u
.
rtp
.
t38_options
->
T38FaxRateManagement
){
if
(
!
strncasecmp
((
char
*
)
f
->
u
.
unknown
.
name
.
val
,
"transferredTCF"
,
14
)
&&
term
->
u
.
rtp
.
t38_options
->
T38FaxRateManagement
){
printf
(
"KAPIL - adding FaxRateManagement
\n
"
);
MG_SET_TKNSTROSXL
((
f
->
u
.
unknown
.
name
),
strlen
(
"FaxRateManagement"
),
"FaxRateManagement"
,
memCp
);
MG_SET_TKNSTROSXL
((
f
->
u
.
unknown
.
val
),
strlen
(
term
->
u
.
rtp
.
t38_options
->
T38FaxRateManagement
),
term
->
u
.
rtp
.
t38_options
->
T38FaxRateManagement
,
memCp
);
}
if
((
i
==
1
)
&&
term
->
u
.
rtp
.
t38_options
->
T38FaxUdpEC
){
}
else
if
((
!
strncasecmp
((
char
*
)
f
->
u
.
unknown
.
name
.
val
,
"t38UDPRedundancy"
,
16
))
&&
term
->
u
.
rtp
.
t38_options
->
T38FaxUdpEC
){
printf
(
"KAPIL - adding FaxUdpEC
\n
"
);
MG_SET_TKNSTROSXL
((
f
->
u
.
unknown
.
name
),
strlen
(
"FaxUdpEC"
),
"FaxUdpEC"
,
memCp
);
MG_SET_TKNSTROSXL
((
f
->
u
.
unknown
.
val
),
strlen
(
term
->
u
.
rtp
.
t38_options
->
T38FaxUdpEC
),
term
->
u
.
rtp
.
t38_options
->
T38FaxUdpEC
,
memCp
);
}
if
((
i
==
2
)){
}
else
if
(
!
strncasecmp
((
char
*
)
f
->
u
.
unknown
.
name
.
val
,
"14400"
,
5
)){
char
buf
[
10
]
=
{
0
};
printf
(
"KAPIL - adding MaxBitRate
\n
"
);
sprintf
(
buf
,
"%d"
,
term
->
u
.
rtp
.
t38_options
->
T38MaxBitRate
);
MG_SET_TKNSTROSXL
((
f
->
u
.
unknown
.
name
),
strlen
(
"MaxBitRate"
),
"MaxBitRate"
,
memCp
);
MG_SET_TKNSTROSXL
((
f
->
u
.
unknown
.
val
),
...
...
@@ -2065,16 +2067,19 @@ switch_status_t mg_rem_unsupported_codecs (megaco_profile_t* mg_profile, mg_term
/*****************************************************************************************************************************/
switch_status_t
mg_build_sdp
(
MgMgcoMediaDesc
*
out
,
MgMgcoMediaDesc
*
inc
,
megaco_profile_t
*
mg_profile
,
mg_termination_t
*
term
,
CmMemListCp
*
memCp
)
{
CmSdpU8OrNil
*
fmt
=
NULL
;
CmSdpInfoSet
*
psdp
=
NULL
;
CmSdpInfoSet
*
pRsdp
=
NULL
;
char
*
ipAddress
[
4
];
int
i
=
0x00
;
int
j
=
0x00
;
int
choose_codec
=
0x00
;
int
k
=
0x00
;
MgMgcoLocalDesc
*
local
=
NULL
;
MgMgcoLocalDesc
*
remote
=
NULL
;
int
fresh_sdp
=
0x00
;
char
*
dup
=
NULL
;
CmSdpMedProtoFmts
*
format
=
NULL
;
...
...
@@ -2107,17 +2112,51 @@ switch_status_t mg_build_sdp(MgMgcoMediaDesc* out, MgMgcoMediaDesc* inc, megaco_
for
(
i
=
0
;
i
<
out
->
num
.
val
;
i
++
)
{
if
(
MGT_MEDIAPAR_LOCAL
==
out
->
parms
[
i
]
->
type
.
val
)
{
local
=
&
out
->
parms
[
i
]
->
u
.
local
;
break
;
}
else
if
(
MGT_MEDIAPAR_STRPAR
==
out
->
parms
[
i
]
->
type
.
val
){
MgMgcoStreamDesc
*
stream
=
&
out
->
parms
[
i
]
->
u
.
stream
;
if
((
NOTPRSNT
!=
stream
->
sl
.
pres
.
pres
)
&&
(
NOTPRSNT
!=
stream
->
sl
.
local
.
pres
.
pres
)){
local
=
&
stream
->
sl
.
local
;
}
}
else
if
(
MGT_MEDIAPAR_REMOTE
==
out
->
parms
[
i
]
->
type
.
val
)
{
remote
=
&
out
->
parms
[
i
]
->
u
.
remote
;
}
}
}
}
if
(
remote
&&
(
NOTPRSNT
!=
remote
->
sdp
.
numComp
.
pres
)
&&
(
0
!=
remote
->
sdp
.
numComp
.
val
)){
pRsdp
=
&
(
remote
->
sdp
);
for
(
i
=
0
;
i
<
pRsdp
->
numComp
.
val
;
i
++
)
{
/* fill media descriptors */
{
CmSdpMediaDescSet
*
med
=
&
pRsdp
->
info
[
pRsdp
->
numComp
.
val
-
1
]
->
mediaDescSet
;
CmSdpMediaDesc
*
media
;
if
((
NOTPRSNT
!=
med
->
numComp
.
pres
)
||
(
0
!=
med
->
numComp
.
val
)){
for
(
j
=
0
;
j
<
med
->
numComp
.
val
;
j
++
){
media
=
med
->
mediaDesc
[
j
];
/* check for codec */
if
((
NOTPRSNT
!=
media
->
field
.
par
.
numProtFmts
.
pres
)
||
(
0
!=
media
->
field
.
par
.
numProtFmts
.
val
)){
for
(
k
=
0
;
k
<
media
->
field
.
par
.
numProtFmts
.
val
;
k
++
){
format
=
media
->
field
.
par
.
pflst
[
k
];
if
((
NOTPRSNT
!=
format
->
protType
.
pres
)
&&
(
CM_SDP_MEDIA_PROTO_UDPTL
==
format
->
protType
.
val
)){
/* ideally whatever is received we can send back *
* due to issue in trillium , we need to manually copy the fields now */
mgco_fill_t38_sdp_attr
(
&
media
->
attrSet
,
term
,
memCp
);
}
}
}
}
}
}
/**********************************************************************************************************************************/
}
}
if
(
!
local
||
(
NOTPRSNT
==
local
->
sdp
.
numComp
.
pres
)
||
(
0
==
local
->
sdp
.
numComp
.
val
)){
/* local sdp is not part of media descriptor, then add local sdp*/
mg_add_local_descriptor
(
out
,
mg_profile
,
term
,
memCp
);
...
...
src/mod/endpoints/mod_media_gateway/media_gateway_xml.c
浏览文件 @
2dd7ab10
...
...
@@ -71,7 +71,7 @@ switch_status_t config_profile(megaco_profile_t *profile, switch_bool_t reload)
for
(
mg_term
=
switch_xml_child
(
mg_phys_terms
,
"map"
);
mg_term
;
mg_term
=
mg_term
->
next
)
{
// <map termination-id-prefix="Term1/" termination-id-base="1" tech="freetdm" channel-prefix="wp2" channel-map"1-15,17-31"/>
const
char
*
prefix
=
switch_xml_attr
(
mg_term
,
"termination-id-prefix"
);
//
const char *sztermination_id_base = switch_xml_attr(mg_term, "termination-id-base");
const
char
*
sztermination_id_base
=
switch_xml_attr
(
mg_term
,
"termination-id-base"
);
const
char
*
tech
=
switch_xml_attr
(
mg_term
,
"tech"
);
const
char
*
channel_prefix
=
switch_xml_attr
(
mg_term
,
"channel-prefix"
);
const
char
*
channel_map
=
switch_xml_attr
(
mg_term
,
"channel-map"
);
...
...
@@ -84,6 +84,7 @@ switch_status_t config_profile(megaco_profile_t *profile, switch_bool_t reload)
int
chanmap_count
=
0
;
int
i
=
0
;
int
startchan
,
endchan
,
j
;
int
mg_term_idx
=
(
sztermination_id_base
)
?
atoi
(
sztermination_id_base
)
:
1
;
/* we can have following combinations *
* i) only one channel i.e. channel-map="1"
...
...
@@ -103,14 +104,15 @@ switch_status_t config_profile(megaco_profile_t *profile, switch_bool_t reload)
startchan
=
atoi
(
chanmap
[
0
]);
endchan
=
atoi
(
chanmap
[
1
]);
for
(
j
=
startchan
;
j
<=
endchan
;
j
++
)
{
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
j
,
j
);
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
mg_term_idx
,
j
);
mg_term_idx
++
;
}
}
}
else
{
/* case (i) */
p
=
channel_map_dup
;
startchan
=
endchan
=
atoi
(
p
);
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
startchan
,
startchan
);
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
mg_term_idx
,
startchan
);
}
}
else
{
...
...
@@ -124,9 +126,10 @@ switch_status_t config_profile(megaco_profile_t *profile, switch_bool_t reload)
for
(
j
=
startchan
;
j
<=
endchan
;
j
++
)
{
if
(
0
==
i
)
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
j
,
j
);
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
mg_term_idx
,
j
);
else
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
j
,
j
-
1
);
mg_create_tdm_term
(
profile
,
tech
,
channel_prefix
,
prefix
,
mg_term_idx
,
j
-
1
);
mg_term_idx
++
;
}
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论