Commit 6a2cfa2a authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix issue for UESecurityCapability

parent c5566d8c
...@@ -151,7 +151,7 @@ int UESecurityCapability::decodefrombuffer( ...@@ -151,7 +151,7 @@ int UESecurityCapability::decodefrombuffer(
decoded_size++; decoded_size++;
_5g_IASel = *(buf + decoded_size); _5g_IASel = *(buf + decoded_size);
decoded_size++; decoded_size++;
if (length == 4) decoded_size += 2; // to do: decoding EEA EIA if (length >= 4) decoded_size += (length - 2); // TODO: decoding EEA EIA
Logger::nas_mm().debug( Logger::nas_mm().debug(
"UESecurityCapability EA 0x%d,IA 0x%d", _5g_EASel, _5g_IASel); "UESecurityCapability EA 0x%d,IA 0x%d", _5g_EASel, _5g_IASel);
return decoded_size; return decoded_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment