MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / decoding

Method decoding

MonaCore/sources/HTTP/HTTPDecoder.cpp:27–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25namespace Mona {
26
27UInt32 HTTPDecoder::decoding(Exception& ex, UInt8* data,UInt32 size) {
28 std::shared_ptr<HTTPPacket> pPacket(new HTTPPacket(_rootPath));
29 UInt32 consumed = pPacket->build(ex, data, size);
30 if (consumed)
31 receive(pPacket);
32 return consumed;
33}
34
35} // namespace Mona

Callers

nothing calls this directly

Calls 1

buildMethod · 0.45

Tested by

no test coverage detected