Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
bf7144b2
提交
bf7144b2
authored
4月 16, 2007
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
...
git-svn-id:
http://svn.freeswitch.org/svn/freeswitch/trunk@4945
d0543943-73ff-0310-b7d9-9358b9ac24b2
上级
f40f87eb
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
220 行增加
和
218 行删除
+220
-218
mod_wanpipe.c
src/mod/endpoints/mod_wanpipe/mod_wanpipe.c
+177
-174
switch_ivr_bridge.c
src/switch_ivr_bridge.c
+3
-8
switch_ivr_originate.c
src/switch_ivr_originate.c
+40
-36
没有找到文件。
src/mod/endpoints/mod_wanpipe/mod_wanpipe.c
浏览文件 @
bf7144b2
...
...
@@ -1016,7 +1016,15 @@ static switch_call_cause_t wanpipe_outgoing_channel(switch_core_session_t *sessi
char
*
protocol
=
NULL
;
char
*
dest
;
int
ready
=
0
,
is_pri
=
0
,
is_boost
=
0
,
is_raw
=
0
;
switch_call_cause_t
cause
=
SWITCH_CAUSE_SUCCESS
;
switch_call_cause_t
cause
=
SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER
;
private_object_t
*
tech_pvt
;
switch_channel_t
*
channel
;
switch_caller_profile_t
*
caller_profile
=
NULL
;
int
callno
=
0
;
struct
sangoma_pri
*
spri
;
int
span
=
0
,
autospan
=
0
,
autochan
=
0
;
char
*
num
,
*
p
;
struct
channel_map
*
chanmap
=
NULL
;
if
(
!
outbound_profile
)
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Doh! no caller profile
\n
"
);
...
...
@@ -1025,6 +1033,7 @@ static switch_call_cause_t wanpipe_outgoing_channel(switch_core_session_t *sessi
}
protocol
=
strdup
(
outbound_profile
->
destination_number
);
assert
(
protocol
!=
NULL
);
if
(
!
(
dest
=
strchr
(
protocol
,
'/'
)))
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Error No protocol specified!
\n
"
);
...
...
@@ -1059,16 +1068,10 @@ static switch_call_cause_t wanpipe_outgoing_channel(switch_core_session_t *sessi
outbound_profile
->
destination_number
=
dest
;
if
((
*
new_session
=
switch_core_session_request
(
&
wanpipe_endpoint_interface
,
pool
)))
{
private_object_t
*
tech_pvt
;
switch_channel_t
*
channel
;
switch_caller_profile_t
*
caller_profile
=
NULL
;
int
callno
=
0
;
struct
sangoma_pri
*
spri
;
int
span
=
0
,
autospan
=
0
,
autochan
=
0
;
char
*
num
,
*
p
;
struct
channel_map
*
chanmap
=
NULL
;
if
(
!
(
*
new_session
=
switch_core_session_request
(
&
wanpipe_endpoint_interface
,
pool
)))
{
cause
=
SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER
;
goto
error
;
}
switch_core_session_add_stream
(
*
new_session
,
NULL
);
if
((
tech_pvt
=
(
private_object_t
*
)
switch_core_session_alloc
(
*
new_session
,
sizeof
(
private_object_t
))))
{
...
...
@@ -1276,7 +1279,7 @@ static switch_call_cause_t wanpipe_outgoing_channel(switch_core_session_t *sessi
switch_set_flag_locked
(
tech_pvt
,
TFLAG_OUTBOUND
);
switch_channel_set_state
(
channel
,
CS_INIT
);
cause
=
SWITCH_CAUSE_SUCCESS
;
}
error:
switch_safe_free
(
protocol
);
...
...
src/switch_ivr_bridge.c
浏览文件 @
bf7144b2
...
...
@@ -87,12 +87,7 @@ static void *audio_bridge_thread(switch_thread_t * thread, void *obj)
break
;
}
b_state
=
switch_channel_get_state
(
chan_b
);
switch
(
b_state
)
{
case
CS_HANGUP
:
case
CS_DONE
:
default:
if
((
b_state
=
switch_channel_get_state
(
chan_b
))
>=
CS_HANGUP
)
{
break
;
}
...
...
@@ -181,11 +176,11 @@ static void *audio_bridge_thread(switch_thread_t * thread, void *obj)
}
}
switch_core_session_kill_channel
(
session_b
,
SWITCH_SIG_BREAK
);
msg
.
string_arg
=
data
->
b_uuid
;
msg
.
message_id
=
SWITCH_MESSAGE_INDICATE_UNBRIDGE
;
msg
.
from
=
__FILE__
;
switch_core_session_receive_message
(
session_a
,
&
msg
);
switch_core_session_kill_channel
(
session_b
,
SWITCH_SIG_BREAK
);
switch_channel_set_variable
(
chan_a
,
SWITCH_BRIDGE_VARIABLE
,
NULL
);
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_DEBUG
,
"BRIDGE THREAD DONE [%s]
\n
"
,
switch_channel_get_name
(
chan_a
));
...
...
src/switch_ivr_originate.c
浏览文件 @
bf7144b2
...
...
@@ -246,8 +246,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
switch_status_t
status
=
SWITCH_STATUS_SUCCESS
;
switch_channel_t
*
caller_channel
=
NULL
;
char
*
peer_names
[
MAX_PEERS
]
=
{
0
};
switch_core_session_t
*
peer_session
,
*
peer_sessions
[
MAX_PEERS
]
=
{
0
};
switch_caller_profile_t
*
caller_profiles
[
MAX_PEERS
]
=
{
0
},
*
caller_caller_profile
;
switch_core_session_t
*
new_session
=
NULL
,
*
peer_session
,
*
peer_sessions
[
MAX_PEERS
]
=
{
0
};
switch_caller_profile_t
*
new_profile
=
NULL
,
*
caller_profiles
[
MAX_PEERS
]
=
{
0
},
*
caller_caller_profile
;
char
*
chan_type
=
NULL
,
*
chan_data
;
switch_channel_t
*
peer_channel
=
NULL
,
*
peer_channels
[
MAX_PEERS
]
=
{
0
};
ringback_t
ringback
=
{
0
};
...
...
@@ -427,6 +427,8 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
memset
(
peer_sessions
,
0
,
sizeof
(
peer_sessions
));
memset
(
peer_channels
,
0
,
sizeof
(
peer_channels
));
memset
(
caller_profiles
,
0
,
sizeof
(
caller_profiles
));
new_profile
=
NULL
;
new_session
=
NULL
;
chan_type
=
NULL
;
chan_data
=
NULL
;
peer_channel
=
NULL
;
...
...
@@ -474,7 +476,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
cid_num_override
=
caller_caller_profile
->
caller_id_number
;
}
caller_profiles
[
i
]
=
switch_caller_profile_new
(
switch_core_session_get_pool
(
session
),
new_profile
=
switch_caller_profile_new
(
switch_core_session_get_pool
(
session
),
caller_caller_profile
->
username
,
caller_caller_profile
->
dialplan
,
cid_name_override
,
...
...
@@ -501,7 +503,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
}
if
(
caller_profile_override
)
{
caller_profiles
[
i
]
=
switch_caller_profile_new
(
pool
,
new_profile
=
switch_caller_profile_new
(
pool
,
caller_profile_override
->
username
,
caller_profile_override
->
dialplan
,
caller_profile_override
->
caller_id_name
,
...
...
@@ -512,7 +514,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
caller_profile_override
->
rdnis
,
caller_profile_override
->
source
,
caller_profile_override
->
context
,
chan_data
);
}
else
{
caller_profiles
[
i
]
=
switch_caller_profile_new
(
pool
,
new_profile
=
switch_caller_profile_new
(
pool
,
NULL
,
NULL
,
cid_name_override
,
cid_num_override
,
NULL
,
NULL
,
NULL
,
NULL
,
__FILE__
,
NULL
,
...
...
@@ -520,23 +522,25 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
}
}
if
((
reason
=
switch_core_session_outgoing_channel
(
session
,
chan_type
,
caller_profiles
[
i
],
&
peer_sessions
[
i
],
&
pool
))
!=
SWITCH_CAUSE_SUCCESS
)
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Cannot Create Outgoing Channel! cause: %s
\n
"
,
switch_channel_cause2str
(
reason
));
if
(
pool
)
{
switch_core_destroy_memory_pool
(
&
pool
);
}
caller_profiles
[
i
]
=
NULL
;
peer_channels
[
i
]
=
NULL
;
peer_sessions
[
i
]
=
NULL
;
new_session
=
NULL
;
if
((
reason
=
switch_core_session_outgoing_channel
(
session
,
chan_type
,
new_profile
,
&
new_session
,
&
pool
))
!=
SWITCH_CAUSE_SUCCESS
)
{
switch_log_printf
(
SWITCH_CHANNEL_LOG
,
SWITCH_LOG_ERROR
,
"Cannot Create Outgoing Channel! cause: %s
\n
"
,
switch_channel_cause2str
(
reason
));
if
(
pool
)
{
switch_core_destroy_memory_pool
(
&
pool
);
}
continue
;
}
switch_core_session_read_lock
(
peer_sessions
[
i
]);
pool
=
NULL
;
peer_channels
[
i
]
=
switch_core_session_get_channel
(
peer_sessions
[
i
]);
caller_profiles
[
i
]
=
new_profile
;
peer_sessions
[
i
]
=
new_session
;
peer_channels
[
i
]
=
switch_core_session_get_channel
(
new_session
);
assert
(
peer_channels
[
i
]
!=
NULL
);
if
(
!
table
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论