Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cpp-lib/src/SnaccROSEBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ void SnaccROSEBase::OnInvokeMessage(SNACC::ROSEMessage* pMessage, unsigned long
const char* szOperationName = SnaccRoseOperationLookup::LookUpName(pInvoke->operationID);

SnaccInvokeContextInit init(SnaccInvokeDirection::INBOUND, pInvoke, szOperationName);
auto pCtx = SnaccInvokeContext::Create(init);
auto pCtx = CreateInvokeContext(init);
auto telemetry = SnaccTelemetryData::Create(SnaccTelemetryData::Direction::INBOUND, pInvoke->operationID, szOperationName, ulMessageSize);
auto telemetryResult = SnaccTelemetryData::Outcome::UNHANDLED;
auto telemetryReason = SnaccTelemetryData::Reason::UNKNOWN_FAILURE;
Expand Down Expand Up @@ -1416,7 +1416,7 @@ long SnaccROSEBase::SendEvent(SNACC::ROSEInvoke* pinvoke, const char* szOperatio
if (!pCtx)
{
SnaccInvokeContextInit init(SnaccInvokeDirection::OUTBOUND, pinvoke, szResolvedOperationName ? szResolvedOperationName : szOperationName);
pCtx = SnaccInvokeContext::Create(init);
pCtx = CreateInvokeContext(init);
}
auto& ctx = *pCtx;
size_t stRequestData = 0;
Expand Down Expand Up @@ -1521,7 +1521,7 @@ long SnaccROSEBase::SendInvoke(SNACC::ROSEInvoke* pinvoke, SNACC::AsnType* resul
if (!pCtx)
{
SnaccInvokeContextInit init(SnaccInvokeDirection::OUTBOUND, pinvoke, szResolvedOperationName ? szResolvedOperationName : szOperationName);
pCtx = SnaccInvokeContext::Create(init);
pCtx = CreateInvokeContext(init);
}
auto& ctx = *pCtx;

Expand Down
6 changes: 3 additions & 3 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef VERSION_H
#define VERSION_H

#define VERSION "7.0.4"
#define VERSION_RC 7, 0, 4
#define RELDATE "29.06.2026"
#define VERSION "7.0.6"
#define VERSION_RC 7, 0, 6
#define RELDATE "03.07.2026"

#endif // VERSION_H
Loading