From 0b4dcf0947ba33b2a5d4e870f210c2bc93330c1d Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Wed, 15 Apr 2020 11:28:11 -0400 Subject: [PATCH] Add missing mc report message type to header The type 30010 was not defined in the header file; it now is. Issue-ID: RIC-334 Signed-off-by: E. Scott Daniels Change-Id: I9cbf576ac04d134f2d8e40c634fe0bc332125735 --- CHANGES_CORE.txt | 3 +++ CMakeLists.txt | 2 +- src/rmr/common/include/RIC_message_types.h | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES_CORE.txt b/CHANGES_CORE.txt index 9500781..80f7e61 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 15; version 3.7.4 + Add missing message type to header file (RIC-334) + 2020 April 14; version 3.7.3 Fix bug in rmr_call() when using SI95 (RIC-333) diff --git a/CMakeLists.txt b/CMakeLists.txt index a08762a..8df2a92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ cmake_minimum_required( VERSION 3.5 ) set( major_version "3" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this set( minor_version "7" ) -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 c3660a2..03b212b 100644 --- a/src/rmr/common/include/RIC_message_types.h +++ b/src/rmr/common/include/RIC_message_types.h @@ -158,6 +158,7 @@ #define TS_QOE_PRED_REQ 30001 #define TS_QUE_PREDICTION 30002 +#define MC_REPORT 30010 // Measurement campaign xApp reports // ---- these are old (release 0) definitions and should not be used ------ -- 2.16.6