From daa7d8cdb58d34241e08ccd04ba96fe452ddfd0d Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Thu, 14 Oct 2021 15:50:19 +0200 Subject: [PATCH] Increase number of tunnels per UE --- srsenb/hdr/stack/upper/gtpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/hdr/stack/upper/gtpu.h b/srsenb/hdr/stack/upper/gtpu.h index 2eb1c9046..47399d476 100644 --- a/srsenb/hdr/stack/upper/gtpu.h +++ b/srsenb/hdr/stack/upper/gtpu.h @@ -49,7 +49,7 @@ class gtpu_tunnel_manager public: // A UE should have <= 3 DRBs active, and each DRB should have two tunnels active at the same time at most - const static size_t MAX_TUNNELS_PER_UE = 6; + const static size_t MAX_TUNNELS_PER_UE = 10; enum class tunnel_state { pdcp_active, buffering, forward_to, forwarded_from, inactive };