summaryrefslogtreecommitdiffstats
path: root/src/isi-call.c
diff options
context:
space:
mode:
authorKlaus Kurzmann <mok@fluxnetz.de>2011-04-08 16:06:47 +0200
committerKlaus Kurzmann <mok@fluxnetz.de>2011-04-08 16:06:47 +0200
commit67c0c32e91db0056fd3aaf5ee485880698d12702 (patch)
tree25870d92bcf1b46a864793a049b71d45b5926545 /src/isi-call.c
parent572de75cb61599693b817e81becdc685db6bc00f (diff)
downloadisi-wireshark-plugin-67c0c32e91db0056fd3aaf5ee485880698d12702.tar.bz2
add and use a dissect_isi_common and use it for all resources
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Diffstat (limited to 'src/isi-call.c')
-rw-r--r--src/isi-call.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/isi-call.c b/src/isi-call.c
index b7f9ecb..4a1e903 100644
--- a/src/isi-call.c
+++ b/src/isi-call.c
@@ -151,6 +151,9 @@ static void dissect_isi_call(tvbuff_t *tvb, packet_info *pinfo, proto_item *isit
cmd = tvb_get_guint8(tvb, 0);
switch (cmd) {
+ case 0xF0: /* CALL_COMMON_MESSAGE */
+ dissect_isi_common("Call", tvb, pinfo, tree);
+ break;
default:
col_set_str(pinfo->cinfo, COL_INFO, "unknown Call packet");
expert_add_info_format(pinfo, item, PI_PROTOCOL, PI_WARN, "unsupported packet");