2018-11-14 09:52:28 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2018-11-14 00:03:15 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2018-11-14 00:03:15 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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.
|
2018-11-14 00:03:15 +08:00
|
|
|
|
*/
|
2018-11-13 23:59:06 +08:00
|
|
|
|
|
2018-11-14 00:03:15 +08:00
|
|
|
|
#include <string.h>
|
2018-11-13 23:59:06 +08:00
|
|
|
|
#include "HttpChunkedSplitter.h"
|
|
|
|
|
|
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
const char *HttpChunkedSplitter::onSearchPacketTail(const char *data, size_t len) {
|
2018-11-13 23:59:06 +08:00
|
|
|
|
auto pos = strstr(data,"\r\n");
|
|
|
|
|
if(!pos){
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
return pos + 2;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
void HttpChunkedSplitter::onRecvContent(const char *data, size_t len) {
|
2018-11-13 23:59:06 +08:00
|
|
|
|
onRecvChunk(data,len - 2);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
size_t HttpChunkedSplitter::onRecvHeader(const char *data, size_t len) {
|
2018-11-13 23:59:06 +08:00
|
|
|
|
string str(data,len - 2);
|
|
|
|
|
int ret;
|
|
|
|
|
sscanf(str.data(),"%X",&ret);
|
|
|
|
|
return ret + 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}//namespace mediakit
|