Files
voice-cat/core/src/protocol/protocol.cpp

12 lines
383 B
C++
Raw Normal View History

#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 §15.
bool FrameCodec::feed(const uint8_t*, size_t, std::vector<std::vector<uint8_t>>&) {
return true; // TODO(M1): real framing.
}
} // namespace voicecat::protocol