Skip to content

Commit

Permalink
NAS 5GS: fix PDU session identity dissection
Browse files Browse the repository at this point in the history
Values 1 to 4 are allowed

Change-Id: Ifa0bc9185af9a16c261d7cbd939a07f77f03b330
Reviewed-on: https://code.wireshark.org/review/34408
Reviewed-by: Pascal Quantin <[email protected]>
  • Loading branch information
pquantin committed Aug 30, 2019
1 parent f6534b8 commit bc78e78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions epan/dissectors/packet-nas_5gs.c
Original file line number Diff line number Diff line change
Expand Up @@ -6117,10 +6117,10 @@ disect_nas_5gs_updp(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int off

const value_string nas_5gs_pdu_session_id_vals[] = {
{ 0x00, "No PDU session identity assigned" },
{ 0x01, "Reserved" },
{ 0x02, "Reserved" },
{ 0x03, "Reserved" },
{ 0x04, "Reserved" },
{ 0x01, "PDU session identity value 1" },
{ 0x02, "PDU session identity value 2" },
{ 0x03, "PDU session identity value 3" },
{ 0x04, "PDU session identity value 4" },
{ 0x05, "PDU session identity value 5" },
{ 0x06, "PDU session identity value 6" },
{ 0x07, "PDU session identity value 7" },
Expand Down

0 comments on commit bc78e78

Please sign in to comment.