Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
e4bd524b
提交
e4bd524b
authored
6月 05, 2012
作者:
kapil
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
adding peerstatus and logging enable/disable CLI command
上级
2b5875a2
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
188 行增加
和
24 行删除
+188
-24
ftmod_sangoma_ss7_cli.c
...eetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c
+159
-9
ftmod_sangoma_ss7_m2ua.c
...etdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_m2ua.c
+27
-15
ftmod_sangoma_ss7_m2ua.h
...etdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_m2ua.h
+2
-0
没有找到文件。
libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c
浏览文件 @
e4bd524b
差异被折叠。
点击展开。
libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_m2ua.c
浏览文件 @
e4bd524b
...
...
@@ -63,9 +63,9 @@ static int ftmod_open_endpoint(int idx);
static
int
ftmod_init_sctp_assoc
(
int
peer_id
);
static
int
ftmod_nif_m2ua_dlsap_bind
(
int
id
);
static
int
ftmod_nif_mtp2_dlsap_bind
(
int
id
);
static
int
ftmod_m2ua_
enable_debug
(
void
);
static
int
ftmod_tucl_
enable_debug
(
void
);
static
int
ftmod_sctp_
enable_debug
(
void
);
static
int
ftmod_m2ua_
debug
(
int
action
);
static
int
ftmod_tucl_
debug
(
int
action
);
static
int
ftmod_sctp_
debug
(
int
action
);
static
int
ftmod_ss7_sctp_shutdown
(
void
);
static
int
ftmod_ss7_m2ua_shutdown
(
void
);
...
...
@@ -1152,15 +1152,26 @@ uint32_t iptoul(const char *ip)
return
(
uint32_t
)
val
;
}
/***********************************************************************************************************************/
void
ftmod_ss7_enable_m2ua_sg_logging
(
void
){
int
ftmod_ss7_m2ua_start
(
void
){
int
x
=
0
;
/* Enable DEBUGs*/
ftmod_sctp_debug
(
AENA
);
ftmod_m2ua_debug
(
AENA
);
ftmod_tucl_debug
(
AENA
);
}
/***********************************************************************************************************************/
/* Enable DEBUGs*/
ftmod_sctp_enable_debug
();
ftmod_m2ua_enable_debug
();
ftmod_tucl_enable_debug
();
void
ftmod_ss7_disable_m2ua_sg_logging
(
void
){
/* DISABLE DEBUGs*/
ftmod_sctp_debug
(
ADISIMM
);
ftmod_m2ua_debug
(
ADISIMM
);
ftmod_tucl_debug
(
ADISIMM
);
}
/***********************************************************************************************************************/
int
ftmod_ss7_m2ua_start
(
void
){
int
x
=
0
;
/***********************************************************************************************************************/
x
=
1
;
...
...
@@ -1466,7 +1477,7 @@ static int ftmod_nif_mtp2_dlsap_bind(int id)
}
/***********************************************************************************************************************/
static
int
ftmod_sctp_
enable_debug
(
)
static
int
ftmod_sctp_
debug
(
int
action
)
{
Pst
pst
;
SbMgmt
cntrl
;
...
...
@@ -1490,7 +1501,7 @@ static int ftmod_sctp_enable_debug()
cntrl
.
hdr
.
response
.
mem
.
region
=
S_REG
;
cntrl
.
hdr
.
response
.
mem
.
pool
=
S_POOL
;
cntrl
.
t
.
cntrl
.
action
=
AENA
;
cntrl
.
t
.
cntrl
.
action
=
action
;
cntrl
.
t
.
cntrl
.
subAction
=
SADBG
;
cntrl
.
t
.
cntrl
.
dbgMask
=
0xFFFF
;
...
...
@@ -1498,7 +1509,7 @@ static int ftmod_sctp_enable_debug()
}
/***********************************************************************************************************************/
static
int
ftmod_m2ua_
enable_debug
(
)
static
int
ftmod_m2ua_
debug
(
int
action
)
{
Pst
pst
;
MwMgmt
cntrl
;
...
...
@@ -1522,14 +1533,14 @@ static int ftmod_m2ua_enable_debug()
cntrl
.
hdr
.
response
.
mem
.
region
=
S_REG
;
cntrl
.
hdr
.
response
.
mem
.
pool
=
S_POOL
;
cntrl
.
t
.
cntrl
.
action
=
AENA
;
cntrl
.
t
.
cntrl
.
action
=
action
;
cntrl
.
t
.
cntrl
.
subAction
=
SADBG
;
cntrl
.
t
.
cntrl
.
s
.
dbgMask
=
0xFFFF
;
return
(
sng_cntrl_m2ua
(
&
pst
,
&
cntrl
));
}
/***********************************************************************************************************************/
static
int
ftmod_tucl_
enable_debug
(
)
static
int
ftmod_tucl_
debug
(
int
action
)
{
Pst
pst
;
HiMngmt
cntrl
;
...
...
@@ -1553,7 +1564,7 @@ static int ftmod_tucl_enable_debug()
cntrl
.
hdr
.
response
.
mem
.
region
=
S_REG
;
cntrl
.
hdr
.
response
.
mem
.
pool
=
S_POOL
;
cntrl
.
t
.
cntrl
.
action
=
AENA
;
cntrl
.
t
.
cntrl
.
action
=
action
;
cntrl
.
t
.
cntrl
.
subAction
=
SADBG
;
cntrl
.
t
.
cntrl
.
ctlType
.
hiDbg
.
dbgMask
=
0xFFFF
;
...
...
@@ -1594,6 +1605,7 @@ int ftmod_sctp_ssta_req(int elemt, int id, SbMgmt* cfm)
}
if
(
ssta
.
hdr
.
elmId
.
elmnt
==
STSBASSOC
)
{
/*TODO - how to get assoc Id*/
ssta
.
t
.
ssta
.
s
.
assocSta
.
assocId
=
0
;
/* association id */
}
return
(
sng_sta_sctp
(
&
pst
,
&
ssta
,
cfm
));
...
...
libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_m2ua.h
浏览文件 @
e4bd524b
...
...
@@ -126,6 +126,8 @@ ftdm_status_t ftmod_ss7_m2ua_cfg(void);
int
ftmod_sctp_ssta_req
(
int
elemt
,
int
id
,
SbMgmt
*
cfm
);
int
ftmod_m2ua_ssta_req
(
int
elemt
,
int
id
,
MwMgmt
*
cfm
);
int
ftmod_nif_ssta_req
(
int
elemt
,
int
id
,
NwMgmt
*
cfm
);
void
ftmod_ss7_enable_m2ua_sg_logging
(
void
);
void
ftmod_ss7_disable_m2ua_sg_logging
(
void
);
#endif
/*__FTMOD_SNG_SS7_M2UA_H__*/
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论