12 lines
383 B
C++
12 lines
383 B
C++
|
|
#include "protocol/protocol.h"
|
|||
|
|
|
|||
|
|
namespace voicecat::protocol {
|
|||
|
|
|
|||
|
|
// M0 stub. The frame codec + protobuf Envelope dispatch are the first M1 task
|
|||
|
|
// (AGENTS.md "Suggested first steps" #1). See docs/protocol.md §1–5.
|
|||
|
|
bool FrameCodec::feed(const uint8_t*, size_t, std::vector<std::vector<uint8_t>>&) {
|
|||
|
|
return true; // TODO(M1): real framing.
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace voicecat::protocol
|