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
61966292
Commit
61966292
authored
Sep 20, 2018
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决rtsp粘包问题
parent
4a6019c6
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
57 行增加
和
30 行删除
+57
-30
src/Rtsp/RtspSession.cpp
+34
-29
src/Rtsp/RtspSession.h
+23
-1
没有找到文件。
src/Rtsp/RtspSession.cpp
查看文件 @
61966292
...
...
@@ -139,35 +139,19 @@ void RtspSession::onManager() {
}
}
void
RtspSession
::
onRecv
(
const
Buffer
::
Ptr
&
pBuf
)
{
m_ticker
.
resetTime
();
void
RtspSession
::
onRecvContent
(
const
string
&
content
){
}
int64_t
RtspSession
::
onRecvHeader
(
const
string
&
header
)
{
char
tmp
[
2
*
1024
];
m_pcBuf
=
tmp
;
m_ui64TotalBytes
+=
pBuf
->
size
();
if
(
m_bBase64need
)
{
//quicktime 加密后的rtsp请求,需要解密
av_base64_decode
((
uint8_t
*
)
m_pcBuf
,
pBuf
->
data
(),
sizeof
(
tmp
));
m_parser
.
Parse
(
m_pcBuf
);
//rtsp请求解析
}
else
{
m_parser
.
Parse
(
pBuf
->
data
());
//rtsp请求解析
if
(
!
m_parser
.
Content
().
empty
()){
weak_ptr
<
TcpSession
>
weakSelf
=
shared_from_this
();
BufferString
::
Ptr
nextRecv
(
new
BufferString
(
m_parser
.
Content
()));
async
([
weakSelf
,
nextRecv
](){
auto
strongSelf
=
weakSelf
.
lock
();
if
(
strongSelf
){
strongSelf
->
onRecv
(
nextRecv
);
}
},
false
);
}
}
m_parser
.
Parse
(
header
.
data
());
//rtsp请求解析
string
strCmd
=
m_parser
.
Method
();
//提取出请求命令字
m_iCseq
=
atoi
(
m_parser
[
"CSeq"
].
data
());
bool
ret
=
false
;
typedef
bool
(
RtspSession
::*
rtspCMDHandle
)();
static
unordered_map
<
string
,
rtspCMDHandle
>
g_mapCmd
;
static
onceToken
token
(
[]()
{
...
...
@@ -186,15 +170,36 @@ void RtspSession::onRecv(const Buffer::Ptr &pBuf) {
auto
it
=
g_mapCmd
.
find
(
strCmd
);
if
(
it
!=
g_mapCmd
.
end
())
{
auto
fun
=
it
->
second
;
ret
=
(
this
->*
fun
)();
m_parser
.
Clear
();
}
else
{
ret
=
(
m_rtpType
==
PlayerBase
::
RTP_TCP
);
}
if
(
!
ret
)
{
if
(
!
(
this
->*
fun
)()){
shutdown
();
}
}
else
{
shutdown
();
WarnL
<<
"cmd="
<<
strCmd
;
}
m_parser
.
Clear
();
return
0
;
}
void
RtspSession
::
onRecv
(
const
Buffer
::
Ptr
&
pBuf
)
{
m_ticker
.
resetTime
();
m_ui64TotalBytes
+=
pBuf
->
size
();
if
(
m_bBase64need
)
{
//quicktime 加密后的rtsp请求,需要解密
inputRtspOrRtcp
(
decodeBase64
(
string
(
pBuf
->
data
(),
pBuf
->
size
())));
}
else
{
inputRtspOrRtcp
(
string
(
pBuf
->
data
(),
pBuf
->
size
()));
}
}
void
RtspSession
::
inputRtspOrRtcp
(
const
string
&
str
)
{
if
(
str
[
0
]
==
'$'
&&
m_rtpType
==
PlayerBase
::
RTP_TCP
){
//这是rtcp
return
;
}
input
(
str
);
}
bool
RtspSession
::
handleReq_Options
()
{
...
...
src/Rtsp/RtspSession.h
查看文件 @
61966292
...
...
@@ -38,6 +38,7 @@
#include "Util/util.h"
#include "Util/logger.h"
#include "Network/TcpSession.h"
#include "Http/HttpRequestSplitter.h"
using
namespace
std
;
using
namespace
ZL
::
Util
;
...
...
@@ -67,7 +68,7 @@ private:
uint32_t
_offset
;
};
class
RtspSession
:
public
TcpSession
{
class
RtspSession
:
public
TcpSession
,
public
HttpRequestSplitter
{
public
:
typedef
std
::
shared_ptr
<
RtspSession
>
Ptr
;
typedef
std
::
function
<
void
(
const
string
&
realm
)
>
onGetRealm
;
...
...
@@ -80,7 +81,27 @@ public:
void
onRecv
(
const
Buffer
::
Ptr
&
pBuf
)
override
;
void
onError
(
const
SockException
&
err
)
override
;
void
onManager
()
override
;
protected
:
//HttpRequestSplitter override
/**
* 收到请求头
* @param header 请求头
* @return 请求头后的content长度,
* <0 : 代表后面所有数据都是content
* 0 : 代表为后面数据还是请求头,
* >0 : 代表后面数据为固定长度content,
*/
int64_t
onRecvHeader
(
const
string
&
header
)
override
;
/**
* 收到content分片或全部数据
* onRecvHeader函数返回>0,则为全部数据
* @param content
*/
void
onRecvContent
(
const
string
&
content
)
override
;
private
:
void
inputRtspOrRtcp
(
const
string
&
str
);
int
send
(
const
string
&
strBuf
)
override
{
m_ui64TotalBytes
+=
strBuf
.
size
();
return
m_pSender
->
send
(
strBuf
);
...
...
@@ -153,6 +174,7 @@ private:
static
void
onAuthBasic
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
,
const
string
&
realm
,
const
string
&
strBase64
);
static
void
onAuthDigest
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
,
const
string
&
realm
,
const
string
&
strMd5
);
private
:
char
*
m_pcBuf
=
nullptr
;
Ticker
m_ticker
;
Parser
m_parser
;
//rtsp解析类
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论