Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
a739bd73
Commit
a739bd73
authored
Oct 23, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善日志
parent
7e1e7352
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
31 行增加
和
9 行删除
+31
-9
src/Http/HttpSession.cpp
+17
-5
src/Http/HttpSession.h
+1
-0
src/Rtmp/RtmpSession.cpp
+6
-2
src/Rtsp/RtspSession.cpp
+7
-2
没有找到文件。
src/Http/HttpSession.cpp
查看文件 @
a739bd73
...
...
@@ -169,11 +169,13 @@ void HttpSession::onRecv(const Buffer::Ptr &pBuf) {
}
void
HttpSession
::
onError
(
const
SockException
&
err
)
{
if
(
_ticker
.
createdTime
()
<
10
*
1000
){
TraceP
(
this
)
<<
err
.
what
();
}
else
{
WarnP
(
this
)
<<
err
.
what
();
}
if
(
_is_flv_stream
){
//flv播放器
WarnP
(
this
)
<<
"播放器("
<<
_mediaInfo
.
_vhost
<<
"/"
<<
_mediaInfo
.
_app
<<
"/"
<<
_mediaInfo
.
_streamid
<<
")断开:"
<<
err
.
what
();
GET_CONFIG
(
uint32_t
,
iFlowThreshold
,
General
::
kFlowThreshold
);
if
(
_ui64TotalBytes
>
iFlowThreshold
*
1024
){
...
...
@@ -184,6 +186,15 @@ void HttpSession::onError(const SockException& err) {
true
,
*
this
);
}
return
;
}
//http客户端
if
(
_ticker
.
createdTime
()
<
10
*
1000
){
TraceP
(
this
)
<<
err
.
what
();
}
else
{
WarnP
(
this
)
<<
err
.
what
();
}
}
void
HttpSession
::
onManager
()
{
...
...
@@ -291,6 +302,7 @@ bool HttpSession::checkLiveFlvStream(const function<void()> &cb){
try
{
start
(
getPoller
(),
rtmp_src
);
_is_flv_stream
=
true
;
}
catch
(
std
::
exception
&
ex
){
//该rtmp源不存在
shutdown
(
SockException
(
Err_shutdown
,
"rtmp mediasource released"
));
...
...
src/Http/HttpSession.h
查看文件 @
a739bd73
...
...
@@ -160,6 +160,7 @@ private:
//处理content数据的callback
function
<
bool
(
const
char
*
data
,
uint64_t
len
)
>
_contentCallBack
;
bool
_flv_over_websocket
=
false
;
bool
_is_flv_stream
=
false
;
};
...
...
src/Rtmp/RtmpSession.cpp
查看文件 @
a739bd73
...
...
@@ -44,13 +44,17 @@ RtmpSession::~RtmpSession() {
}
void
RtmpSession
::
onError
(
const
SockException
&
err
)
{
WarnP
(
this
)
<<
err
.
what
();
bool
isPlayer
=
!
_pPublisherSrc
;
WarnP
(
this
)
<<
(
isPlayer
?
"播放器("
:
"推流器("
)
<<
_mediaInfo
.
_vhost
<<
"/"
<<
_mediaInfo
.
_app
<<
"/"
<<
_mediaInfo
.
_streamid
<<
")断开:"
<<
err
.
what
();
//流量统计事件广播
GET_CONFIG
(
uint32_t
,
iFlowThreshold
,
General
::
kFlowThreshold
);
if
(
_ui64TotalBytes
>
iFlowThreshold
*
1024
){
bool
isPlayer
=
!
_pPublisherSrc
;
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastFlowReport
,
_mediaInfo
,
_ui64TotalBytes
,
...
...
src/Rtsp/RtspSession.cpp
查看文件 @
a739bd73
...
...
@@ -85,7 +85,13 @@ RtspSession::~RtspSession() {
}
void
RtspSession
::
onError
(
const
SockException
&
err
)
{
WarnP
(
this
)
<<
err
.
what
();
bool
isPlayer
=
!
_pushSrc
;
WarnP
(
this
)
<<
(
isPlayer
?
"播放器("
:
"推流器("
)
<<
_mediaInfo
.
_vhost
<<
"/"
<<
_mediaInfo
.
_app
<<
"/"
<<
_mediaInfo
.
_streamid
<<
")断开:"
<<
err
.
what
();
if
(
_rtpType
==
Rtsp
::
RTP_MULTICAST
)
{
//取消UDP端口监听
UDPServer
::
Instance
().
stopListenPeer
(
get_peer_ip
().
data
(),
this
);
...
...
@@ -100,7 +106,6 @@ void RtspSession::onError(const SockException& err) {
//流量统计事件广播
GET_CONFIG
(
uint32_t
,
iFlowThreshold
,
General
::
kFlowThreshold
);
if
(
_ui64TotalBytes
>
iFlowThreshold
*
1024
){
bool
isPlayer
=
!
_pushSrc
;
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastFlowReport
,
_mediaInfo
,
_ui64TotalBytes
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论