| 326 | } |
| 327 | |
| 328 | void DebugMessageHandler::HandleIdentify(uint32_t seq, DbgIdentifyRequest const & req) |
| 329 | { |
| 330 | DEBUG(" --> DbgIdentifyRequest(Version %d)", req.protocol_version()); |
| 331 | SendVersionInfo(seq); |
| 332 | |
| 333 | if (req.protocol_version() != ProtocolVersion) { |
| 334 | WARN("DebugMessageHandler::HandleIdentify(): Client sent unsupported protocol version; got %d, we only support %d", |
| 335 | req.protocol_version(), ProtocolVersion); |
| 336 | intf_.Disconnect(); |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | void DebugMessageHandler::HandleSetGlobalBreakpoints(uint32_t seq, DbgSetGlobalBreakpoints const & req) |
| 341 | { |
nothing calls this directly
no test coverage detected