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