PFCP: Fix QFI bitmask

QFI field is 6-bit long but in PFCP dissector bitmask was set to 0x7f.
It needs to be 0x3f
This commit is contained in:
Ivan Stanoev 2023-01-12 10:23:22 +02:00 committed by AndersBroman
parent aff45e6318
commit cc9f5aed2b
1 changed files with 1 additions and 1 deletions

View File

@ -12652,7 +12652,7 @@ proto_register_pfcp(void)
},
{ &hf_pfcp_qfi,
{ "QFI", "pfcp.qfi_value",
FT_UINT8, BASE_HEX, NULL, 0x7f,
FT_UINT8, BASE_HEX, NULL, 0x3f,
NULL, HFILL }
},
{ &hf_pfcp_query_urr_reference,