Commit bbac73f7 authored by Stefan Spettel's avatar Stefan Spettel Committed by Raphael Defosseux

fix(smf): wrong IPv6 PFCP IEs

Signed-off-by: default avatarStefan Spettel <stefan.spettel@phine.tech>
parent f3d2f3df
......@@ -67,9 +67,11 @@ pfcp::ue_ip_address_t smf_session_procedure::pfcp_ue_ip_address(
ue_ip.v4 = 1;
ue_ip.ipv4_address = sps->ipv4_address;
}
// TODO malformed PFCP message, should be fixed in PFCP layer, but we dont
// need it for now
if (sps->ipv6) {
ue_ip.v6 = 1;
ue_ip.ipv6_address = sps->ipv6_address;
ue_ip.v6 = 0;
// ue_ip.ipv6_address = sps->ipv6_address;
}
return ue_ip;
}
......
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