mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-01 00:57:28 +08:00
35 lines
973 B
C++
35 lines
973 B
C++
/*
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
*
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include "HttpChunkedSplitter.h"
|
|
|
|
namespace mediakit{
|
|
|
|
const char *HttpChunkedSplitter::onSearchPacketTail(const char *data, uint64_t len) {
|
|
auto pos = strstr(data,"\r\n");
|
|
if(!pos){
|
|
return nullptr;
|
|
}
|
|
return pos + 2;
|
|
}
|
|
|
|
void HttpChunkedSplitter::onRecvContent(const char *data, uint64_t len) {
|
|
onRecvChunk(data,len - 2);
|
|
}
|
|
|
|
int64_t HttpChunkedSplitter::onRecvHeader(const char *data, uint64_t len) {
|
|
string str(data,len - 2);
|
|
int ret;
|
|
sscanf(str.data(),"%X",&ret);
|
|
return ret + 2;
|
|
}
|
|
|
|
}//namespace mediakit
|