Add new message types 79/979/1 1.8.0
authorE. Scott Daniels <daniels@research.att.com>
Thu, 19 Sep 2019 12:40:39 +0000 (08:40 -0400)
committerE. Scott Daniels <daniels@research.att.com>
Thu, 19 Sep 2019 12:40:39 +0000 (08:40 -0400)
Specifically:
RAN_CONNECTED
RAN_RESTARTED
RAN_RECONFIGURED

Signed-off-by: E. Scott Daniels <daniels@research.att.com>
Change-Id: I77cc3cf0a33161ee6020537653e837df7bd9b1b1

CHANGES
CMakeLists.txt
src/rmr/common/include/RIC_message_types.h

diff --git a/CHANGES b/CHANGES
index f74e182..d0a8694 100644 (file)
--- 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
index b4122d7..983aa0b 100644 (file)
@@ -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}" )
index 028a598..e679ec5 100644 (file)
 
 #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