summaryrefslogtreecommitdiff
path: root/ui/qt/decode_as_dialog.cpp
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-10-31 22:35:06 -0400
committerMichael Mann <mmann78@netscape.net>2015-11-04 12:43:35 +0000
commite0e574d16748313dd8903f886d1af9eb0821fee7 (patch)
tree703ef32dae8cf7b5e20b967071b8830b1f664d62 /ui/qt/decode_as_dialog.cpp
parent74541a9596eead6647c592de9aa46797c2dffa84 (diff)
downloadwireshark-e0e574d16748313dd8903f886d1af9eb0821fee7.tar.gz
Refactor DCE/RPC dissection to include a real dissector table.
This is hopefully just the first step in getting DCE/RPC dissection to use "standard" APIs instead of homegrown ones. For starters, it allows Decode As functionality to be less hacky (although incomplete in Qt) Change-Id: Ia0923a3d8d514ab7acce32e26ee7e08f6e24feca Reviewed-on: https://code.wireshark.org/review/11468 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/qt/decode_as_dialog.cpp')
-rw-r--r--ui/qt/decode_as_dialog.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/qt/decode_as_dialog.cpp b/ui/qt/decode_as_dialog.cpp
index 3e44584f20..104ed0c8e5 100644
--- a/ui/qt/decode_as_dialog.cpp
+++ b/ui/qt/decode_as_dialog.cpp
@@ -163,6 +163,10 @@ QString DecodeAsDialog::entryString(const gchar *table_name, gpointer value)
entry_str = (char *)value;
break;
+ case FT_GUID:
+ //TODO: DCE/RPC dissector table
+ break;
+
default:
g_assert_not_reached();
break;