Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
1e7b4a13
提交
1e7b4a13
authored
8月 06, 2016
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-8761 #resolve [Memory leak in FreeSWITCH]
上级
61c487c3
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
20 行增加
和
4 行删除
+20
-4
.update
libs/sofia-sip/.update
+1
-1
tport_type_ws.c
libs/sofia-sip/libsofia-sip-ua/tport/tport_type_ws.c
+16
-1
tport_ws.h
libs/sofia-sip/libsofia-sip-ua/tport/tport_ws.h
+1
-0
ws.c
libs/sofia-sip/libsofia-sip-ua/tport/ws.c
+1
-1
ws.h
libs/sofia-sip/libsofia-sip-ua/tport/ws.h
+1
-1
没有找到文件。
libs/sofia-sip/.update
浏览文件 @
1e7b4a13
Wed Jul 27 14:15:49
CDT 2016
Sat Aug 6 11:48:53
CDT 2016
libs/sofia-sip/libsofia-sip-ua/tport/tport_type_ws.c
浏览文件 @
1e7b4a13
...
...
@@ -461,6 +461,7 @@ int tport_ws_init_secondary(tport_t *self, int socket, int accepted,
tport_ws_t
*
wstp
=
(
tport_ws_t
*
)
self
;
self
->
tp_has_connection
=
1
;
self
->
tp_params
->
tpp_keepalive
=
5000
;
/* override the default 30 minute timeout on tport connections */
self
->
tp_params
->
tpp_idle
=
UINT_MAX
;
...
...
@@ -496,7 +497,7 @@ int tport_ws_init_secondary(tport_t *self, int socket, int accepted,
wstp
->
ws_initialized
=
1
;
self
->
tp_pre_framed
=
1
;
tport_set_secondary_timer
(
self
);
return
0
;
}
...
...
@@ -592,6 +593,20 @@ int tport_ws_next_timer(tport_t *self,
su_time_t
*
return_target
,
char
const
**
return_why
)
{
tport_ws_t
*
wstp
=
(
tport_ws_t
*
)
self
;
if
(
establish_logical_layer
(
&
wstp
->
ws
)
<
0
)
{
if
(
wstp
->
tos
++
==
1
)
{
tport_close
(
self
);
SU_DEBUG_7
((
"%s(%p): %s to "
TPN_FORMAT
"%s
\n
"
,
__func__
,
(
void
*
)
self
,
"timeout establishing connection
\n
"
,
TPN_ARGS
(
self
->
tp_name
),
""
));
return
-
1
;
}
}
else
{
self
->
tp_params
->
tpp_keepalive
=
30000
;
}
return
tport_next_recv_timeout
(
self
,
return_target
,
return_why
)
|
tport_next_keepalive
(
self
,
return_target
,
return_why
);
...
...
libs/sofia-sip/libsofia-sip-ua/tport/tport_ws.h
浏览文件 @
1e7b4a13
...
...
@@ -59,6 +59,7 @@ typedef struct tport_ws_s {
char
wstp_buffer
[
65536
];
size_t
wstp_buflen
;
SU_S8_T
ws_initialized
;
unsigned
char
tos
;
unsigned
ws_secure
:
1
;
unsigned
:
0
;
}
tport_ws_t
;
...
...
libs/sofia-sip/libsofia-sip-ua/tport/ws.c
浏览文件 @
1e7b4a13
...
...
@@ -500,7 +500,7 @@ static int restore_socket(ws_socket_t sock)
#endif
static
int
establish_logical_layer
(
wsh_t
*
wsh
)
int
establish_logical_layer
(
wsh_t
*
wsh
)
{
if
(
!
wsh
->
sanity
)
{
...
...
libs/sofia-sip/libsofia-sip-ua/tport/ws.h
浏览文件 @
1e7b4a13
...
...
@@ -119,7 +119,7 @@ typedef struct wsh_s {
ssize_t
ws_send_buf
(
wsh_t
*
wsh
,
ws_opcode_t
oc
);
ssize_t
ws_feed_buf
(
wsh_t
*
wsh
,
void
*
data
,
size_t
bytes
);
int
establish_logical_layer
(
wsh_t
*
wsh
);
ssize_t
ws_raw_read
(
wsh_t
*
wsh
,
void
*
data
,
size_t
bytes
,
int
block
);
ssize_t
ws_raw_write
(
wsh_t
*
wsh
,
void
*
data
,
size_t
bytes
);
ssize_t
ws_read_frame
(
wsh_t
*
wsh
,
ws_opcode_t
*
oc
,
uint8_t
**
data
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论