From: E. Scott Daniels Date: Tue, 6 Aug 2019 12:36:50 +0000 (-0400) Subject: Add new message type X-Git-Tag: 1.0.44^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=debe504028e923e8f90122baffaea5fcbaff2613;hp=4240b8b821ba794ef3b83caa13b78aa3ee8944bd;p=ric-plt%2Flib%2Frmr.git Add new message type The message type E2_TERM_INIT was added. Signed-off-by: E. Scott Daniels Change-Id: I2be5fc7de8cd46c083146b7308eac4620825a3dd --- diff --git a/CHANGES b/CHANGES index 622c167..808f2d4 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ API change summaries and fixes to the code. Doc correctsions and/or changes are not mentioned here; see the commit messages. +2019 August 6; version 1.0.44 + Added a new message type constant. + 2019 July 15; Version 1.0.39 Prevent unnecessary usleep in retry loop. diff --git a/CMakeLists.txt b/CMakeLists.txt index 65db51c..5257293 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ cmake_minimum_required( VERSION 3.5 ) set( major_version "1" ) # 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 "43" ) +set( patch_level "44" ) set( install_root "${CMAKE_INSTALL_PREFIX}" ) set( install_lib "lib" ) diff --git a/src/rmr/common/include/RIC_message_types.h b/src/rmr/common/include/RIC_message_types.h index cf97978..010ce7d 100644 --- a/src/rmr/common/include/RIC_message_types.h +++ b/src/rmr/common/include/RIC_message_types.h @@ -32,10 +32,15 @@ #define RIC_UNDEFINED -1 +// ---- RESERVED ------------------------------------------- +// all message types 0 - 99 are reserved for RMR // --------------------------------------------------------- + #define RIC_SCTP_CONNECTION_FAILURE 1080 #define RIC_SCTP_CLEAR_ALL 1090 +#define E2_TERM_INIT 1100 + #define RIC_SUB_REQ 12010 #define RIC_SUB_RESP 12011 #define RIC_SUB_FAILURE 12012