MCPcopy Create free account
hub / github.com/Norbyte/bg3se / HandleIdentify

Method HandleIdentify

BG3Extender/Osiris/Debugger/DebugMessages.cpp:328–338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

DisconnectMethod · 0.80

Tested by

no test coverage detected