From ce6415bfce8f56f8abe5660040f01042cd9d7300 Mon Sep 17 00:00:00 2001 From: Mirela Chirica Date: Thu, 20 Jun 2019 14:48:07 +0300 Subject: [PATCH] Cellular: Remove IPV6 and IPV4V6 as supported properties for BG96 IPV6 and IPV6V4 support is also network dependent not only modem. Having these properties enabled for a modem requires a fallback mechanism during PDP context activation. This mechanism is missing at the moment and that can result in imposibility to establish succesfull connection when network only supports IPV4 contexts. --- .../cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.cpp b/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.cpp index 27c7318bdc..c2148bf0a5 100644 --- a/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.cpp +++ b/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.cpp @@ -57,8 +57,8 @@ static const intptr_t cellular_properties[AT_CellularBase::PROPERTY_MAX] = { 1, // AT_CMGF 1, // AT_CSDH 1, // PROPERTY_IPV4_STACK - 1, // PROPERTY_IPV6_STACK - 1, // PROPERTY_IPV4V6_STACK + 0, // PROPERTY_IPV6_STACK + 0, // PROPERTY_IPV4V6_STACK 1, // PROPERTY_NON_IP_PDP_TYPE 1, // PROPERTY_AT_CGEREP };