From be2894e8df2a427f230e0c592ee172471ab1df3a Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Thu, 23 Apr 2020 21:20:54 -0400 Subject: [PATCH] Fix message type constant name for TS_QUE_PREDICTION The constant for message type 30002 was not correct. Issue-ID: RIC-342 Signed-off-by: E. Scott Daniels Change-Id: I4286f96f650ad77811c76cccef0eeca52592ad34 --- CHANGES_CORE.txt | 3 +++ CMakeLists.txt | 2 +- src/rmr/common/include/RIC_message_types.h | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES_CORE.txt b/CHANGES_CORE.txt index 481452c..4a275d8 100644 --- a/CHANGES_CORE.txt +++ b/CHANGES_CORE.txt @@ -5,6 +5,9 @@ # API and build change and fix summaries. Doc correctsions # and/or changes are not mentioned here; see the commit messages. +2020 April 22; version 4.0.1 + Correct message type constant for Traffic Steering predication (RIC-342) + 2020 April 21; version 4.0.0 The NNG based libraries are no longer included in the RMR packages. This is considered a breaking change as NNG will not be supported by diff --git a/CMakeLists.txt b/CMakeLists.txt index a8aa1ba..578a484 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ cmake_minimum_required( VERSION 3.5 ) set( major_version "4" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this set( minor_version "0" ) -set( patch_level "0" ) +set( patch_level "1" ) set( install_root "${CMAKE_INSTALL_PREFIX}" ) set( install_inc "include/rmr" ) diff --git a/src/rmr/common/include/RIC_message_types.h b/src/rmr/common/include/RIC_message_types.h index d28fe42..75b7f98 100644 --- a/src/rmr/common/include/RIC_message_types.h +++ b/src/rmr/common/include/RIC_message_types.h @@ -155,7 +155,7 @@ // --- application specific message numbers 30000 - 39999 #define TS_UE_LIST 30000 // traffic steering -#define TS_QOE_PRED_REQ 30001 +#define TS_QUE_PRED_REQ 30001 #define TS_QUE_PREDICTION 30002 #define MC_REPORT 30010 // Measurement campaign xApp reports -- 2.16.6