From 2f57db5352c3fd997049943d40df8f5b90110730 Mon Sep 17 00:00:00 2001 From: Francisco Paisana Date: Mon, 24 Feb 2020 14:12:17 +0000 Subject: [PATCH] changed invalid rnti to 0 --- srsenb/hdr/stack/upper/s1ap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/hdr/stack/upper/s1ap.h b/srsenb/hdr/stack/upper/s1ap.h index 7b85600b8..44572bdf4 100644 --- a/srsenb/hdr/stack/upper/s1ap.h +++ b/srsenb/hdr/stack/upper/s1ap.h @@ -39,7 +39,7 @@ namespace srsenb { struct ue_ctxt_t { - static const uint16_t invalid_rnti = std::numeric_limits::max(); + static const uint16_t invalid_rnti = 0; static const uint32_t invalid_id = std::numeric_limits::max(); uint16_t rnti = invalid_rnti; uint32_t enb_ue_s1ap_id = invalid_id;