From 5cfd688f510cc32a965d5cb1f052d7025d1d84a3 Mon Sep 17 00:00:00 2001 From: Lefucjusz Date: Mon, 9 Oct 2023 12:15:02 +0200 Subject: [PATCH] [MOS-1043] Enable VoLTE only for Poland and US Enable volte for Poland and US, disable for all the remaining countries. --- .../src/volte/VolteAllowedList.cpp | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/module-services/service-cellular/src/volte/VolteAllowedList.cpp b/module-services/service-cellular/src/volte/VolteAllowedList.cpp index 690adea78c81aca88a11531f8b55fad37eec3dbe..d1b7f5d1e5639532a2129881909174361b33607f 100644 --- a/module-services/service-cellular/src/volte/VolteAllowedList.cpp +++ b/module-services/service-cellular/src/volte/VolteAllowedList.cpp @@ -4,12 +4,6 @@ #include "VolteAllowedList.hpp" #include "ImsiParser_Poland.hpp" #include "ImsiParser_UnitedStates.hpp" -#include "ImsiParser_Netherlands.hpp" -#include "ImsiParser_Germany.hpp" -#include "ImsiParser_Denmark.hpp" -#include "ImsiParser_GreatBritain.hpp" -#include "ImsiParser_Canada.hpp" -#include "ImsiParser_Austria.hpp" #include #include @@ -54,14 +48,6 @@ namespace cellular::service void VolteAllowedList::buildList() { - pushBack(allowedList, - ImsiParserPL(), - ImsiParserUS(), - ImsiParserDK(), - ImsiParserDE(), - ImsiParserNL(), - ImsiParserGB(), - ImsiParserCA(), - ImsiParserAT()); + pushBack(allowedList, ImsiParserPL(), ImsiParserUS()); } } // namespace cellular::service