From: E. Scott Daniels Date: Thu, 19 Sep 2019 12:40:39 +0000 (-0400) Subject: Add new message types X-Git-Tag: 1.8.0^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F979%2F1;p=ric-plt%2Flib%2Frmr.git Add new message types Specifically: RAN_CONNECTED RAN_RESTARTED RAN_RECONFIGURED Signed-off-by: E. Scott Daniels Change-Id: I77cc3cf0a33161ee6020537653e837df7bd9b1b1 --- diff --git a/CHANGES b/CHANGES index f74e182..d0a8694 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,16 @@ API and build change and fixe summaries. Doc correctsions and/or changes are not mentioned here; see the commit messages. +2019 September 19; version 1.8.0 + New message types added: + RAN_CONNECTED, RAN_RESTARTED, RAN_RECONFIGURED + +2019 September 17; version 1.7.0 + Initial connection mode now defaults to asynchronous. Set RMR_ASYNC_CONN=0 + in the environment before rmr_init() is invoked to revert to + synchronous first TCP connections. (Recovery connection attempts + have always been asynchronous). + 2019 September 3; version 1.6.0 Fix bug in the rmr_rts_msg() function. If a return to sender message failed, the source IP address was not correctly adjusted and could diff --git a/CMakeLists.txt b/CMakeLists.txt index b4122d7..983aa0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,7 +35,7 @@ project( rmr LANGUAGES C ) 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 "7" ) +set( minor_version "8" ) set( patch_level "0" ) set( install_root "${CMAKE_INSTALL_PREFIX}" ) diff --git a/src/rmr/common/include/RIC_message_types.h b/src/rmr/common/include/RIC_message_types.h index 028a598..e679ec5 100644 --- a/src/rmr/common/include/RIC_message_types.h +++ b/src/rmr/common/include/RIC_message_types.h @@ -43,6 +43,11 @@ #define E2_TERM_INIT 1100 +#define RAN_CONNECTED 1200 +#define RAN_RESTARTED 1210 +#define RAN_RECONFIGURED 1220 + + #define RIC_ENB_LOAD_INFORMATION 10020 #define RIC_ERROR_INDICATION 10030