summaryrefslogtreecommitdiffstats
path: root/src/isi-ss.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/isi-ss.c')
-rw-r--r--src/isi-ss.c22
1 files changed, 2 insertions, 20 deletions
diff --git a/src/isi-ss.c b/src/isi-ss.c
index 1f6938b..9a4f758 100644
--- a/src/isi-ss.c
+++ b/src/isi-ss.c
@@ -296,26 +296,8 @@ static void dissect_isi_ss(tvbuff_t *tvb, packet_info *pinfo, proto_item *isitre
}
break;
- case 0xF0: /* SS_COMMON_MESSAGE */
- proto_tree_add_item(tree, hf_isi_ss_common_message_id, tvb, 1, 1, FALSE);
- code = tvb_get_guint8(tvb, 1);
- switch(code) {
- case 0x01: /* COMM_SERVICE_NOT_IDENTIFIED_RESP */
- col_set_str(pinfo->cinfo, COL_INFO, "Common Message: Service Not Identified Response");
- break;
- case 0x12: /* COMM_ISI_VERSION_GET_REQ */
- col_set_str(pinfo->cinfo, COL_INFO, "Common Message: ISI Version Get Request");
- break;
- case 0x13: /* COMM_ISI_VERSION_GET_RESP */
- col_set_str(pinfo->cinfo, COL_INFO, "Common Message: ISI Version Get Response");
- break;
- case 0x14: /* COMM_ISA_ENTITY_NOT_REACHABLE_RESP */
- col_set_str(pinfo->cinfo, COL_INFO, "Common Message: ISA Entity Not Reachable");
- break;
- default:
- col_set_str(pinfo->cinfo, COL_INFO, "Common Message");
- break;
- }
+ case 0xF0: /* COMMON_MESSAGE */
+ dissect_isi_common("Subscriber Service", tvb, pinfo, tree);
break;