From 13114d18807827cab7b630e52250efab6d20d2c0 Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Thu, 19 Sep 2019 08:40:39 -0400 Subject: [PATCH] Add new message types Specifically: RAN_CONNECTED RAN_RESTARTED RAN_RECONFIGURED Signed-off-by: E. Scott Daniels Change-Id: I77cc3cf0a33161ee6020537653e837df7bd9b1b1 --- CHANGES | 10 ++++++++++ CMakeLists.txt | 2 +- src/rmr/common/include/RIC_message_types.h | 5 +++++ 3 files changed, 16 insertions(+), 1 deletion(-) 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 -- 2.16.6