mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
修复编译警告
This commit is contained in:
parent
1b24832a44
commit
34bbfc8bcb
@ -515,7 +515,7 @@ void HttpSession::sendResponse(int code,
|
||||
if(no_content_length){
|
||||
//http-flv直播是Keep-Alive类型
|
||||
bClose = false;
|
||||
}else if(size >= SIZE_MAX || size < 0 ){
|
||||
}else if((size_t) size >= SIZE_MAX || size < 0 ){
|
||||
//不固定长度的body,那么发送完body后应该关闭socket,以便浏览器做下载完毕的判断
|
||||
bClose = true;
|
||||
}
|
||||
|
@ -62,7 +62,7 @@ public:
|
||||
*/
|
||||
void sortPacket(SEQ seq, T packet) {
|
||||
if (seq < _next_seq_out) {
|
||||
if (_next_seq_out - seq < kMax) {
|
||||
if (_next_seq_out < seq + kMax) {
|
||||
//过滤seq回退包(回环包除外)
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user