From debe504028e923e8f90122baffaea5fcbaff2613 Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Tue, 6 Aug 2019 08:36:50 -0400 Subject: [PATCH] Add new message type The message type E2_TERM_INIT was added. Signed-off-by: E. Scott Daniels Change-Id: I2be5fc7de8cd46c083146b7308eac4620825a3dd --- CHANGES | 3 +++ CMakeLists.txt | 2 +- src/rmr/common/include/RIC_message_types.h | 5 +++++ 3 files changed, 9 insertions(+), 1 deletion(-) 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 -- 2.16.6