From: E. Scott Daniels Date: Wed, 29 Apr 2020 17:16:11 +0000 (-0400) Subject: Correct traffic steering message type constants X-Git-Tag: 4.04^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=1dc4c556a176a73718c83f30d56ea35d1f76755e;p=ric-plt%2Flib%2Frmr.git Correct traffic steering message type constants The original correction got the "fix" backwards. This changes QUE to QOE as it was supposed to be. Issue-ID: RIC-342 Signed-off-by: E. Scott Daniels Change-Id: I72a4869c5bd2e6db29e8243a460b9c2503c7fc1e --- diff --git a/CHANGES_CORE.txt b/CHANGES_CORE.txt index 3d943cc..d9d558c 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 29; version 4.0.4 + Fix the traffic steering message type constants (again) (RIC-342) + 2020 April 28; version 4.0.3 Fix sonar flagged bugs (RIC-78) diff --git a/CMakeLists.txt b/CMakeLists.txt index a858a8e..17be9ed 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 "3" ) +set( patch_level "4" ) 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 75b7f98..8452302 100644 --- a/src/rmr/common/include/RIC_message_types.h +++ b/src/rmr/common/include/RIC_message_types.h @@ -155,8 +155,8 @@ // --- application specific message numbers 30000 - 39999 #define TS_UE_LIST 30000 // traffic steering -#define TS_QUE_PRED_REQ 30001 -#define TS_QUE_PREDICTION 30002 +#define TS_QOE_PRED_REQ 30001 +#define TS_QOE_PREDICTION 30002 #define MC_REPORT 30010 // Measurement campaign xApp reports