From 30802777cf9aef539536b9d325131c8b32c03cbf Mon Sep 17 00:00:00 2001 From: Francisco Paisana Date: Tue, 29 Jun 2021 12:45:14 +0100 Subject: [PATCH] fix,enb: fix enb.conf param description --- srsenb/enb.conf.example | 2 +- srsenb/src/main.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srsenb/enb.conf.example b/srsenb/enb.conf.example index ceed0689a..f7760089d 100644 --- a/srsenb/enb.conf.example +++ b/srsenb/enb.conf.example @@ -334,7 +334,7 @@ enable = false # eia_pref_list: Ordered preference list for the selection of integrity algorithm (EIA) (default: EIA2, EIA1, EIA0). # gtpu_tunnel_timeout: Time that GTPU takes to release indirect forwarding tunnel since the last received GTPU PDU (0 for no timer). #ts1_reloc_prep_timeout: S1AP TS 36.413 TS1RelocPrep Expiry Timeout value in milliseconds -#ts1_reloc_overall_timeout: S1AP TS 36.413 TS1RelocPrep Expiry Timeout value in milliseconds +#ts1_reloc_overall_timeout: S1AP TS 36.413 TS1RelocOverall Expiry Timeout value in milliseconds # ##################################################################### [expert] diff --git a/srsenb/src/main.cc b/srsenb/src/main.cc index a3f31fb26..6a94d7379 100644 --- a/srsenb/src/main.cc +++ b/srsenb/src/main.cc @@ -235,7 +235,7 @@ void parse_args(all_args_t* args, int argc, char* argv[]) ("expert.rlf_release_timer_ms", bpo::value(&args->general.rlf_release_timer_ms)->default_value(4000), "Time taken by eNB to release UE context after it detects an RLF") ("expert.extended_cp", bpo::value(&args->phy.extended_cp)->default_value(false), "Use extended cyclic prefix") ("expert.ts1_reloc_prep_timeout", bpo::value(&args->stack.s1ap.ts1_reloc_prep_timeout)->default_value(10000), "S1AP TS 36.413 TS1RelocPrep Expiry Timeout value in milliseconds") - ("expert.ts1_reloc_overall_timeout", bpo::value(&args->stack.s1ap.ts1_reloc_overall_timeout)->default_value(10000), "S1AP TS 36.413 TS1RelocPrep Expiry Timeout value in milliseconds") + ("expert.ts1_reloc_overall_timeout", bpo::value(&args->stack.s1ap.ts1_reloc_overall_timeout)->default_value(10000), "S1AP TS 36.413 TS1RelocOverall Expiry Timeout value in milliseconds") // eMBMS section