17 lines
369 B
C++
17 lines
369 B
C++
|
/**
|
||
|
* @file mcp_protocol.cpp
|
||
|
* @brief Implementation of the MCP protocol
|
||
|
*
|
||
|
* This file implements the core protocol functionality for the MCP protocol.
|
||
|
* Follows the 2024-11-05 basic protocol specification.
|
||
|
*/
|
||
|
|
||
|
#include "mcp_message.h"
|
||
|
#include <random>
|
||
|
#include <sstream>
|
||
|
|
||
|
namespace mcp {
|
||
|
|
||
|
// Implementation of any protocol-related functions
|
||
|
|
||
|
} // namespace mcp
|