Commit a3c6d62b authored by Stefan Spettel's avatar Stefan Spettel

fix(smf): Add flow description length in PFCP layer

Signed-off-by: default avatarStefan Spettel <stefan.spettel@eurecom.fr>
parent b0322b78
...@@ -945,7 +945,7 @@ class pfcp_sdf_filter_ie : public pfcp_ie { ...@@ -945,7 +945,7 @@ class pfcp_sdf_filter_ie : public pfcp_ie {
u1.bf.fl = b.fl; u1.bf.fl = b.fl;
u1.bf.bid = b.bid; u1.bf.bid = b.bid;
if (u1.bf.fd) { if (u1.bf.fd) {
length_of_flow_description = b.length_of_flow_description; length_of_flow_description = b.flow_description.length();
flow_description = b.flow_description; flow_description = b.flow_description;
tlv.add_length( tlv.add_length(
sizeof(length_of_flow_description) + flow_description.size()); sizeof(length_of_flow_description) + flow_description.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