LI5G: update column protocol and filter name

Lawful Interception (LI) is the main area and should be located first
in name, which will be more easy of use for new user when want to
filter messages
This commit is contained in:
Joakim Karlsson 2024-02-07 10:11:31 +01:00
parent 75a64a96b7
commit 754a16258c
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ dissect_li5g(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_
dissect_li5g(tvb_new_subset_remaining(tvb, offset+payloadLen), pinfo, tree, NULL);
/* set these info at the end*/
col_set_str(pinfo->cinfo, COL_PROTOCOL, "5GLI");
col_set_str(pinfo->cinfo, COL_PROTOCOL, "LI5G");
col_clear_fence(pinfo->cinfo, COL_INFO);
col_clear(pinfo->cinfo, COL_INFO);
info = try_val_to_str(pduType, pdu_type_vals);
@ -289,7 +289,7 @@ proto_register_li5g(void)
&ett_attrContents[22],
};
proto_li5g = proto_register_protocol("5G Lawful Interception", "5GLI", "5gli");
proto_li5g = proto_register_protocol("Lawful Interception 5G", "LI5G", "li5g");
li5g_handle = register_dissector("li5g", dissect_li5g, proto_li5g);