#define MS_CLASS "RTC::SCTP::CookieAckChunk"
#include "RTC/SCTP/packet/chunks/CookieAckChunk.hpp"
#include "Logger.hpp"
#include "MediaSoupErrors.hpp"
namespace RTC
{
namespace SCTP
{
CookieAckChunk* CookieAckChunk::Parse(const uint8_t* buffer, size_t bufferLength)
{
MS_TRACE();
Chunk::ChunkType chunkType;
uint16_t chunkLength;
uint8_t padding;
if (!Chunk::IsChunk(buffer, bufferLength, chunkType, chunkLength, padding))
{
return nullptr;
}
if (chunkType != Chunk::ChunkType::COOKIE_ACK)
{
MS_WARN_DEV("invalid chunk type");
return nullptr;
}
return CookieAckChunk::ParseStrict(buffer, bufferLength, chunkLength, padding);
}
CookieAckChunk* CookieAckChunk::Factory(uint8_t* buffer, size_t bufferLength)
{
MS_TRACE();
if (bufferLength < Chunk::ChunkHeaderLength)
{
MS_THROW_TYPE_ERROR("buffer too small");
}
auto* chunk = new CookieAckChunk(buffer, bufferLength);
chunk->InitializeHeader(Chunk::ChunkType::COOKIE_ACK, 0, Chunk::ChunkHeaderLength);
return chunk;
}
CookieAckChunk* CookieAckChunk::ParseStrict(
const uint8_t* buffer, size_t bufferLength, uint16_t chunkLength, uint8_t )
{
MS_TRACE();
if (chunkLength != Chunk::ChunkHeaderLength)
{
MS_WARN_TAG(sctp, "CookieAckChunk length field must be %zu", Chunk::ChunkHeaderLength);
return nullptr;
}
auto* chunk = new CookieAckChunk(const_cast<uint8_t*>(buffer), bufferLength);
return chunk;
}
CookieAckChunk::CookieAckChunk(uint8_t* buffer, size_t bufferLength)
: Chunk(buffer, bufferLength)
{
MS_TRACE();
SetLength(Chunk::ChunkHeaderLength);
}
CookieAckChunk::~CookieAckChunk()
{
MS_TRACE();
}
void CookieAckChunk::Dump(int indentation) const
{
MS_TRACE();
MS_DUMP_CLEAN(indentation, "<SCTP::CookieAckChunk>");
DumpCommon(indentation);
MS_DUMP_CLEAN(indentation, "</SCTP::CookieAckChunk>");
}
CookieAckChunk* CookieAckChunk::Clone(uint8_t* buffer, size_t bufferLength) const
{
MS_TRACE();
auto* clonedChunk = new CookieAckChunk(buffer, bufferLength);
CloneInto(clonedChunk);
SoftCloneInto(clonedChunk);
return clonedChunk;
}
CookieAckChunk* CookieAckChunk::SoftClone(const uint8_t* buffer) const
{
MS_TRACE();
auto* softClonedChunk = new CookieAckChunk(const_cast<uint8_t*>(buffer), GetLength());
SoftCloneInto(softClonedChunk);
return softClonedChunk;
}
} }