aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mbim.h
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2014-03-27 09:54:47 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2014-03-27 10:12:27 +0000
commit3dd4ef59bbd0662dc92ee566fda787957667c1a1 (patch)
tree3b3a0ba39898a67f42e30fa894b937d8210c9806 /epan/dissectors/packet-mbim.h
parent3584a21c8703207580ff512be574989f485f0a79 (diff)
MBIM: fix identification of DSS streams and add a way to register an external dissector for DSS
Change-Id: Ic7f5708b60ee5846d95725dbbd14d8958d43372e Reviewed-on: https://code.wireshark.org/review/843 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-mbim.h')
-rw-r--r--epan/dissectors/packet-mbim.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mbim.h b/epan/dissectors/packet-mbim.h
index 29b682efb5..3c8f3138f0 100644
--- a/epan/dissectors/packet-mbim.h
+++ b/epan/dissectors/packet-mbim.h
@@ -53,9 +53,11 @@ struct mbim_uuid_ext {
const gchar *uuid_name;
/* value_string array containing the CID list for this UUID */
const value_string *uuid_cid_list;
- /* Array of the dissection functions per CID. Pointers can be NULL when no dissection is expected. */
+ /* Array of the dissection functions per CID. Pointers can be NULL when no dissection is expected */
/* BEWARE: the array must be ordered the same way as uuid_cid_list as it will be accessed with the CID index */
const struct mbim_cid_dissect *uuid_fct_list;
+ /* Handle used for the DSS of this UUID. Set it to NULL if unused */
+ dissector_handle_t dss_handle;
};
/* Function allowing to register a new UUID used during MBIM dissection */