aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2012-08-08 03:29:51 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2012-08-08 03:29:51 +0000
commit98a893986d5997a8f57877d45abd26e443c5da6c (patch)
tree3ae2da9b93d8226c3e50733435fa93cb1f7e1816 /epan
parent68aea944da0373941ab73ca38e7c9c77b85f4a3b (diff)
Use expert infos instead of g_warning when something unexpected is found.
svn path=/trunk/; revision=44324
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-coseventcomm.c127
-rw-r--r--epan/dissectors/packet-cosnaming.c235
-rw-r--r--epan/dissectors/packet-parlay.c16795
-rw-r--r--epan/dissectors/packet-tango.c415
4 files changed, 11716 insertions, 5856 deletions
diff --git a/epan/dissectors/packet-coseventcomm.c b/epan/dissectors/packet-coseventcomm.c
index 0b005e35ff..5568a060c6 100644
--- a/epan/dissectors/packet-coseventcomm.c
+++ b/epan/dissectors/packet-coseventcomm.c
@@ -46,6 +46,7 @@ static int hf_operationrequest = -1;/* Request_Operation field */
#include <epan/packet.h>
#include <epan/proto.h>
#include <epan/dissectors/packet-giop.h>
+#include <epan/expert.h>
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
@@ -172,10 +173,13 @@ decode_CosEventComm_PushConsumer_push(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -185,10 +189,13 @@ decode_CosEventComm_PushConsumer_push(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -232,10 +239,13 @@ decode_CosEventComm_PushConsumer_disconnect_push_consumer(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -245,10 +255,13 @@ decode_CosEventComm_PushConsumer_disconnect_push_consumer(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -292,10 +305,13 @@ decode_CosEventComm_PushSupplier_disconnect_push_supplier(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -305,10 +321,13 @@ decode_CosEventComm_PushSupplier_disconnect_push_supplier(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -352,10 +371,13 @@ decode_CosEventComm_PullSupplier_pull(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -365,10 +387,13 @@ decode_CosEventComm_PullSupplier_pull(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -416,10 +441,13 @@ decode_CosEventComm_PullSupplier_try_pull(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -429,10 +457,13 @@ decode_CosEventComm_PullSupplier_try_pull(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -476,10 +507,13 @@ decode_CosEventComm_PullSupplier_disconnect_pull_supplier(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -489,10 +523,13 @@ decode_CosEventComm_PullSupplier_disconnect_pull_supplier(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -536,10 +573,13 @@ decode_CosEventComm_PullConsumer_disconnect_pull_consumer(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -549,10 +589,13 @@ decode_CosEventComm_PullConsumer_disconnect_pull_consumer(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
diff --git a/epan/dissectors/packet-cosnaming.c b/epan/dissectors/packet-cosnaming.c
index 9f3cec0f87..7e4194999a 100644
--- a/epan/dissectors/packet-cosnaming.c
+++ b/epan/dissectors/packet-cosnaming.c
@@ -46,6 +46,7 @@ static int hf_operationrequest = -1;/* Request_Operation field */
#include <epan/packet.h>
#include <epan/proto.h>
#include <epan/dissectors/packet-giop.h>
+#include <epan/expert.h>
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
@@ -307,10 +308,13 @@ decode_CosNaming_NamingContext_bind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -320,10 +324,13 @@ decode_CosNaming_NamingContext_bind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -389,10 +396,13 @@ decode_CosNaming_NamingContext_rebind(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -402,10 +412,13 @@ decode_CosNaming_NamingContext_rebind(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -471,10 +484,13 @@ decode_CosNaming_NamingContext_bind_context(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -484,10 +500,13 @@ decode_CosNaming_NamingContext_bind_context(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -553,10 +572,13 @@ decode_CosNaming_NamingContext_rebind_context(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -566,10 +588,13 @@ decode_CosNaming_NamingContext_rebind_context(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -633,10 +658,13 @@ decode_CosNaming_NamingContext_resolve(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -646,10 +674,13 @@ decode_CosNaming_NamingContext_resolve(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -712,10 +743,13 @@ decode_CosNaming_NamingContext_unbind(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -725,10 +759,13 @@ decode_CosNaming_NamingContext_unbind(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -773,10 +810,13 @@ decode_CosNaming_NamingContext_new_context(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -786,10 +826,13 @@ decode_CosNaming_NamingContext_new_context(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -853,10 +896,13 @@ decode_CosNaming_NamingContext_bind_new_context(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -866,10 +912,13 @@ decode_CosNaming_NamingContext_bind_new_context(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -913,10 +962,13 @@ decode_CosNaming_NamingContext_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -926,10 +978,13 @@ decode_CosNaming_NamingContext_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -999,10 +1054,13 @@ decode_CosNaming_NamingContext_list(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1012,10 +1070,13 @@ decode_CosNaming_NamingContext_list(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1069,10 +1130,13 @@ decode_CosNaming_BindingIterator_next_one(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1082,10 +1146,13 @@ decode_CosNaming_BindingIterator_next_one(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1154,10 +1221,13 @@ decode_CosNaming_BindingIterator_next_n(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1167,10 +1237,13 @@ decode_CosNaming_BindingIterator_next_n(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1214,10 +1287,13 @@ decode_CosNaming_BindingIterator_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1227,10 +1303,13 @@ decode_CosNaming_BindingIterator_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
diff --git a/epan/dissectors/packet-parlay.c b/epan/dissectors/packet-parlay.c
index 114e099a58..7bd89ca192 100644
--- a/epan/dissectors/packet-parlay.c
+++ b/epan/dissectors/packet-parlay.c
@@ -46,6 +46,7 @@ static int hf_operationrequest = -1;/* Request_Operation field */
#include <epan/packet.h>
#include <epan/proto.h>
#include <epan/dissectors/packet-giop.h>
+#include <epan/expert.h>
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
@@ -6273,10 +6274,13 @@ decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6286,10 +6290,13 @@ decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6340,10 +6347,13 @@ decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6353,10 +6363,13 @@ decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6416,10 +6429,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6429,10 +6445,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6494,10 +6513,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6507,10 +6529,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6560,10 +6585,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6573,10 +6601,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6639,10 +6670,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6652,10 +6686,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6702,10 +6739,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6715,10 +6755,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6768,10 +6811,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCal
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6781,10 +6827,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCal
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6847,10 +6896,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6860,10 +6912,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6918,10 +6973,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6931,10 +6989,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -6980,10 +7041,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -6993,10 +7057,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7042,10 +7109,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7055,10 +7125,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7119,10 +7192,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7132,10 +7208,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7198,10 +7277,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7211,10 +7293,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7286,10 +7371,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7299,10 +7387,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7346,10 +7437,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7359,10 +7453,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7406,10 +7503,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7419,10 +7519,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7494,10 +7597,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7507,10 +7613,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7556,10 +7665,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_select
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7569,10 +7681,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_select
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7644,10 +7759,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7657,10 +7775,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7704,10 +7825,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortA
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7717,10 +7841,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortA
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7764,10 +7891,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7777,10 +7907,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7826,10 +7959,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_select
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7839,10 +7975,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_select
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7914,10 +8053,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7927,10 +8069,13 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -7985,10 +8130,13 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNot
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -7998,10 +8146,13 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNot
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8045,10 +8196,13 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_notificat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8058,10 +8212,13 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_notificat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8114,10 +8271,13 @@ decode_org_csapi_fw_fw_application_notification_IpEventNotification_createNotifi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8127,10 +8287,13 @@ decode_org_csapi_fw_fw_application_notification_IpEventNotification_createNotifi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8178,10 +8341,13 @@ decode_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotif
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8191,10 +8357,13 @@ decode_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotif
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8244,10 +8413,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8257,10 +8429,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8308,10 +8483,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8321,10 +8499,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8375,10 +8556,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8388,10 +8572,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8442,10 +8629,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryIn
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8455,10 +8645,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryIn
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8511,10 +8704,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8524,10 +8720,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8592,10 +8791,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8605,10 +8807,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8659,10 +8864,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8672,10 +8880,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8723,10 +8934,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8736,10 +8950,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8803,10 +9020,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8816,10 +9036,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8865,10 +9088,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8878,10 +9104,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -8933,10 +9162,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -8946,10 +9178,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9002,10 +9237,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9015,10 +9253,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9087,10 +9328,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9100,10 +9344,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9182,10 +9429,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9195,10 +9445,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9254,10 +9507,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9267,10 +9523,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9321,10 +9580,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9334,10 +9596,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9389,10 +9654,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9402,10 +9670,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9468,10 +9739,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9481,10 +9755,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9535,10 +9812,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9548,10 +9828,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9614,10 +9897,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotificat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9627,10 +9913,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotificat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9674,10 +9963,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9687,10 +9979,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9734,10 +10029,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9747,10 +10045,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9794,10 +10095,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNot
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9807,10 +10111,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNot
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9854,10 +10161,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9867,10 +10177,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -9926,10 +10239,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsR
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -9939,10 +10255,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsR
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10009,10 +10328,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10022,10 +10344,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10080,10 +10405,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10093,10 +10421,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10147,10 +10478,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10160,10 +10494,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10228,10 +10565,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10241,10 +10581,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10307,10 +10650,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10320,10 +10666,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10374,10 +10723,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10387,10 +10739,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10447,10 +10802,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotifi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10460,10 +10818,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotifi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10520,10 +10881,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotif
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10533,10 +10897,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotif
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10593,10 +10960,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10606,10 +10976,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10666,10 +11039,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10679,10 +11055,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10751,10 +11130,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10764,10 +11146,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10834,10 +11219,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10847,10 +11235,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10905,10 +11296,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10918,10 +11312,13 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -10967,10 +11364,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -10980,10 +11380,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11029,10 +11432,13 @@ decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11042,10 +11448,13 @@ decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11095,10 +11504,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11108,10 +11520,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11161,10 +11576,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11174,10 +11592,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11223,10 +11644,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11236,10 +11660,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11304,10 +11731,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordR
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11317,10 +11747,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordR
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11368,10 +11801,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11381,10 +11817,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11430,10 +11869,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11443,10 +11885,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11498,10 +11943,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordR
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11511,10 +11959,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordR
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11565,10 +12016,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordE
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11578,10 +12032,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordE
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11632,10 +12089,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11645,10 +12105,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11717,10 +12180,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11730,10 +12196,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11789,10 +12258,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11802,10 +12274,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11860,10 +12335,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11873,10 +12351,13 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11927,10 +12408,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -11940,10 +12424,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -11987,10 +12474,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12000,10 +12490,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12051,10 +12544,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12064,10 +12560,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12111,10 +12610,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12124,10 +12626,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12171,10 +12676,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12184,10 +12692,13 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12238,10 +12749,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12251,10 +12765,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12298,10 +12815,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartB
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12311,10 +12831,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartB
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12362,10 +12885,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12375,10 +12901,13 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12433,10 +12962,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12446,10 +12978,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12501,10 +13036,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceT
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12514,10 +13052,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceT
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12603,10 +13144,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12616,10 +13160,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12680,10 +13227,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedSe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12693,10 +13243,13 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedSe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12759,10 +13312,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12772,10 +13328,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12838,10 +13397,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12851,10 +13413,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12910,10 +13475,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -12923,10 +13491,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -12989,10 +13560,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13002,10 +13576,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13051,10 +13628,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13064,10 +13644,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13113,10 +13696,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13126,10 +13712,13 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13181,10 +13770,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13194,10 +13786,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13249,10 +13844,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13262,10 +13860,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13311,10 +13912,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13324,10 +13928,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13375,10 +13982,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13388,10 +13998,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13439,10 +14052,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13452,10 +14068,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13516,10 +14135,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13529,10 +14151,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13587,10 +14212,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13600,10 +14228,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13655,10 +14286,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13668,10 +14302,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13728,10 +14365,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13741,10 +14381,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13796,10 +14439,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13809,10 +14455,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13864,10 +14513,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13877,10 +14529,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13926,10 +14581,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -13939,10 +14597,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -13994,10 +14655,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14007,10 +14671,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14065,10 +14732,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14078,10 +14748,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14138,10 +14811,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14151,10 +14827,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14217,10 +14896,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountMa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14230,10 +14912,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountMa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14277,10 +14962,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountMa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14290,10 +14978,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountMa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14343,10 +15034,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountIn
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14356,10 +15050,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountIn
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14411,10 +15108,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14424,10 +15124,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14479,10 +15182,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14492,10 +15198,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14541,10 +15250,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14554,10 +15266,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14622,10 +15337,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14635,10 +15353,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14690,10 +15411,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14703,10 +15427,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14752,10 +15479,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14765,10 +15495,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14827,10 +15560,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14840,10 +15576,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14902,10 +15641,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14915,10 +15657,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -14979,10 +15724,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -14992,10 +15740,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15047,10 +15798,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15060,10 +15814,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15118,10 +15875,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15131,10 +15891,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15180,10 +15943,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15193,10 +15959,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15251,10 +16020,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15264,10 +16036,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15324,10 +16099,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15337,10 +16115,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15397,10 +16178,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15410,10 +16194,13 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15468,10 +16255,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15481,10 +16271,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15528,10 +16321,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15541,10 +16337,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15597,10 +16396,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_crea
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15610,10 +16412,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_crea
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15661,10 +16466,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_dest
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15674,10 +16482,13 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_dest
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15732,10 +16543,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15745,10 +16559,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15800,10 +16617,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceTyp
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15813,10 +16633,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceTyp
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15902,10 +16725,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15915,10 +16741,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -15979,10 +16808,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -15992,10 +16824,13 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServ
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16063,10 +16898,13 @@ decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16076,10 +16914,13 @@ decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16125,10 +16966,13 @@ decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16138,10 +16982,13 @@ decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManag
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16206,10 +17053,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16219,10 +17069,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16271,10 +17124,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_anno
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16284,10 +17140,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_anno
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16333,10 +17192,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unre
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16346,10 +17208,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unre
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16401,10 +17266,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_desc
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16414,10 +17282,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_desc
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16463,10 +17334,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unan
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16476,10 +17350,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unan
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16563,10 +17440,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16576,10 +17456,13 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16631,10 +17514,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16644,10 +17530,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16710,10 +17599,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16723,10 +17615,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16777,10 +17672,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16790,10 +17688,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16856,10 +17757,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16869,10 +17773,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16916,10 +17823,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16929,10 +17839,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -16976,10 +17889,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -16989,10 +17905,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17036,10 +17955,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17049,10 +17971,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17096,10 +18021,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotifi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17109,10 +18037,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotifi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17168,10 +18099,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17181,10 +18115,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17251,10 +18188,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17264,10 +18204,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17322,10 +18265,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17335,10 +18281,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17389,10 +18338,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17402,10 +18354,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17464,10 +18419,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17477,10 +18435,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17543,10 +18504,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17556,10 +18520,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17610,10 +18577,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17623,10 +18593,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17677,10 +18650,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotifica
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17690,10 +18666,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotifica
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17744,10 +18723,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17757,10 +18739,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17811,10 +18796,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17824,10 +18812,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17878,10 +18869,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17891,10 +18885,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -17957,10 +18954,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -17970,10 +18970,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18040,10 +19043,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18053,10 +19059,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18111,10 +19120,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18124,10 +19136,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18177,10 +19192,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18190,10 +19208,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18241,10 +19262,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18254,10 +19278,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18308,10 +19335,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18321,10 +19351,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18375,10 +19408,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18388,10 +19424,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18442,10 +19481,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18455,10 +19497,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18502,10 +19547,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18515,10 +19563,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18562,10 +19613,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18575,10 +19629,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18637,10 +19694,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18650,10 +19710,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18701,10 +19764,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18714,10 +19780,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18774,10 +19843,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordEr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18787,10 +19859,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordEr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18855,10 +19930,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18868,10 +19946,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18923,10 +20004,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRec
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -18936,10 +20020,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRec
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -18990,10 +20077,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19003,10 +20093,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19069,10 +20162,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19082,10 +20178,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19146,10 +20245,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19159,10 +20261,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19218,10 +20323,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19231,10 +20339,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19285,10 +20396,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19298,10 +20412,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19356,10 +20473,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19369,10 +20489,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19422,10 +20545,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19435,10 +20561,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19482,10 +20611,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19495,10 +20627,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19557,10 +20692,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19570,10 +20708,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19624,10 +20765,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19637,10 +20781,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19688,10 +20835,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19701,10 +20851,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19769,10 +20922,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19782,10 +20938,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19849,10 +21008,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19862,10 +21024,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19917,10 +21082,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19930,10 +21098,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -19984,10 +21155,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -19997,10 +21171,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsReco
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20051,10 +21228,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20064,10 +21244,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20130,10 +21313,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20143,10 +21329,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20202,10 +21391,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20215,10 +21407,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20273,10 +21468,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20286,10 +21484,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20335,10 +21536,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20348,10 +21552,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20397,10 +21604,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20410,10 +21620,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20464,10 +21677,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20477,10 +21693,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20524,10 +21743,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20537,10 +21759,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20588,10 +21813,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20601,10 +21829,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20648,10 +21879,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20661,10 +21895,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20708,10 +21945,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20721,10 +21961,13 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20775,10 +22018,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20788,10 +22034,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20835,10 +22084,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20848,10 +22100,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20899,10 +22154,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20912,10 +22170,13 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -20968,10 +22229,13 @@ decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotifica
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -20981,10 +22245,13 @@ decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotifica
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21032,10 +22299,13 @@ decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21045,10 +22315,13 @@ decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21103,10 +22376,13 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21116,10 +22392,13 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotific
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21163,10 +22442,13 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationT
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21176,10 +22458,13 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationT
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21239,10 +22524,13 @@ decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21252,10 +22540,13 @@ decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21315,10 +22606,13 @@ decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21328,10 +22622,13 @@ decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21387,10 +22684,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21400,10 +22700,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21459,10 +22762,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21472,10 +22778,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21531,10 +22840,13 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21544,10 +22856,13 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21603,10 +22918,13 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21616,10 +22934,13 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21674,10 +22995,13 @@ decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21687,10 +23011,13 @@ decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21740,10 +23067,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21753,10 +23083,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21812,10 +23145,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21825,10 +23161,13 @@ decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -21884,10 +23223,13 @@ decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -21897,10 +23239,13 @@ decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22019,10 +23364,13 @@ decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22032,10 +23380,13 @@ decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22091,10 +23442,13 @@ decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22104,10 +23458,13 @@ decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22155,10 +23512,13 @@ decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22168,10 +23528,13 @@ decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22223,10 +23586,13 @@ decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22236,10 +23602,13 @@ decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22295,10 +23664,13 @@ decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22308,10 +23680,13 @@ decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22371,10 +23746,13 @@ decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22384,10 +23762,13 @@ decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22439,10 +23820,13 @@ decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22452,10 +23836,13 @@ decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22511,10 +23898,13 @@ decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22524,10 +23914,13 @@ decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22575,10 +23968,13 @@ decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22588,10 +23984,13 @@ decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22639,10 +24038,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22652,10 +24054,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22720,10 +24125,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22733,10 +24141,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22780,10 +24191,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22793,10 +24207,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22840,10 +24257,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22853,10 +24273,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22904,10 +24327,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22917,10 +24343,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -22968,10 +24397,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -22981,10 +24413,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23043,10 +24478,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23056,10 +24494,13 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23112,10 +24553,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23125,10 +24569,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23185,10 +24632,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23198,10 +24648,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23249,10 +24702,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23262,10 +24718,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23338,10 +24797,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23351,10 +24813,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23410,10 +24875,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23423,10 +24891,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23487,10 +24958,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23500,10 +24974,13 @@ decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23559,10 +25036,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23572,10 +25052,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23631,10 +25114,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23644,10 +25130,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23695,10 +25184,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23708,10 +25200,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23767,10 +25262,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23780,10 +25278,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23831,10 +25332,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23844,10 +25348,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23903,10 +25410,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23916,10 +25426,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -23975,10 +25488,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -23988,10 +25504,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24047,10 +25566,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24060,10 +25582,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24119,10 +25644,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24132,10 +25660,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24191,10 +25722,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24204,10 +25738,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24263,10 +25800,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24276,10 +25816,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24334,10 +25877,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24347,10 +25893,13 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24403,10 +25952,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24416,10 +25968,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24476,10 +26031,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24489,10 +26047,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24540,10 +26101,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24553,10 +26117,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24612,10 +26179,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24625,10 +26195,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24689,10 +26262,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24702,10 +26278,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24778,10 +26357,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24791,10 +26373,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24843,10 +26428,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24856,10 +26444,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24903,10 +26494,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24916,10 +26510,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -24973,10 +26570,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -24986,10 +26586,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25079,10 +26682,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25092,10 +26698,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25162,10 +26771,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25175,10 +26787,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25233,10 +26848,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25246,10 +26864,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25301,10 +26922,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25314,10 +26938,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25371,10 +26998,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25384,10 +27014,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25435,10 +27068,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25448,10 +27084,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25499,10 +27138,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25512,10 +27154,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25569,10 +27214,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25582,10 +27230,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25633,10 +27284,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25646,10 +27300,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25705,10 +27362,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25718,10 +27378,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25781,10 +27444,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25794,10 +27460,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25853,10 +27522,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25866,10 +27538,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -25917,10 +27592,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -25930,10 +27608,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26011,10 +27692,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26024,10 +27708,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26094,10 +27781,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26107,10 +27797,13 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26166,10 +27859,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26179,10 +27875,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26238,10 +27937,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26251,10 +27953,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26310,10 +28015,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26323,10 +28031,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26382,10 +28093,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26395,10 +28109,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26454,10 +28171,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26467,10 +28187,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26534,10 +28257,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26547,10 +28273,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26615,10 +28344,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26628,10 +28360,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26688,10 +28423,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26701,10 +28439,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26814,10 +28555,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26827,10 +28571,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26885,10 +28632,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26898,10 +28648,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -26949,10 +28702,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -26962,10 +28718,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27017,10 +28776,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27030,10 +28792,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27089,10 +28854,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27102,10 +28870,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27165,10 +28936,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27178,10 +28952,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27237,10 +29014,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27250,10 +29030,13 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27341,10 +29124,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27354,10 +29140,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27405,10 +29194,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27418,10 +29210,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27465,10 +29260,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27478,10 +29276,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27525,10 +29326,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27538,10 +29342,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27589,10 +29396,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncounte
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27602,10 +29412,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncounte
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27653,10 +29466,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27666,10 +29482,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27728,10 +29547,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27741,10 +29563,13 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27811,10 +29636,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27824,10 +29652,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27883,10 +29714,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27896,10 +29730,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -27973,10 +29810,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -27986,10 +29826,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28037,10 +29880,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28050,10 +29896,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28116,10 +29965,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28129,10 +29981,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28199,10 +30054,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28212,10 +30070,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28280,10 +30141,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28293,10 +30157,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28356,10 +30223,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28369,10 +30239,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28484,10 +30357,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotificat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28497,10 +30373,13 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotificat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28557,10 +30436,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28570,10 +30452,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28621,10 +30506,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28634,10 +30522,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotificatio
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28693,10 +30584,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28706,10 +30600,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28770,10 +30667,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28783,10 +30683,13 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28838,10 +30741,13 @@ decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28851,10 +30757,13 @@ decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28906,10 +30815,13 @@ decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -28919,10 +30831,13 @@ decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -28987,10 +30902,13 @@ decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29000,10 +30918,13 @@ decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29055,10 +30976,13 @@ decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29068,10 +30992,13 @@ decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29143,10 +31070,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29156,10 +31086,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29217,10 +31150,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29230,10 +31166,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29303,10 +31242,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29316,10 +31258,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29371,10 +31316,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29384,10 +31332,13 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29440,10 +31391,13 @@ decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29453,10 +31407,13 @@ decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29528,10 +31485,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29541,10 +31501,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29596,10 +31559,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29609,10 +31575,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29668,10 +31637,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29681,10 +31653,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29736,10 +31711,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29749,10 +31727,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29800,10 +31781,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29813,10 +31797,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29868,10 +31855,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29881,10 +31871,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -29936,10 +31929,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -29949,10 +31945,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30007,10 +32006,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30020,10 +32022,13 @@ decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30088,10 +32093,13 @@ decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30101,10 +32109,13 @@ decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30168,10 +32179,13 @@ decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30181,10 +32195,13 @@ decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30232,10 +32249,13 @@ decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30245,10 +32265,13 @@ decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30302,10 +32325,13 @@ decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30315,10 +32341,13 @@ decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30377,10 +32406,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30390,10 +32422,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30452,10 +32487,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30465,10 +32503,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30529,10 +32570,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30542,10 +32586,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30604,10 +32651,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30617,10 +32667,13 @@ decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30675,10 +32728,13 @@ decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30688,10 +32744,13 @@ decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30754,10 +32813,13 @@ decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30767,10 +32829,13 @@ decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30829,10 +32894,13 @@ decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30842,10 +32910,13 @@ decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30904,10 +32975,13 @@ decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30917,10 +32991,13 @@ decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -30979,10 +33056,13 @@ decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -30992,10 +33072,13 @@ decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31047,10 +33130,13 @@ decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31060,10 +33146,13 @@ decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31122,10 +33211,13 @@ decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31135,10 +33227,13 @@ decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31197,10 +33292,13 @@ decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31210,10 +33308,13 @@ decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31272,10 +33373,13 @@ decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31285,10 +33389,13 @@ decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31340,10 +33447,13 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31353,10 +33463,13 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31400,10 +33513,13 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31413,10 +33529,13 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31460,10 +33579,13 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31473,10 +33595,13 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31541,10 +33666,13 @@ decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31554,10 +33682,13 @@ decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31620,10 +33751,13 @@ decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31633,10 +33767,13 @@ decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31721,10 +33858,13 @@ decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31734,10 +33874,13 @@ decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31826,10 +33969,13 @@ decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31839,10 +33985,13 @@ decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31890,10 +34039,13 @@ decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31903,10 +34055,13 @@ decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -31956,10 +34111,13 @@ decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -31969,10 +34127,13 @@ decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32020,10 +34181,13 @@ decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32033,10 +34197,13 @@ decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32101,10 +34268,13 @@ decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32114,10 +34284,13 @@ decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32171,10 +34344,13 @@ decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32184,10 +34360,13 @@ decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32239,10 +34418,13 @@ decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32252,10 +34434,13 @@ decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32309,10 +34494,13 @@ decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32322,10 +34510,13 @@ decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32386,10 +34577,13 @@ decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32399,10 +34593,13 @@ decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32462,10 +34659,13 @@ decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32475,10 +34675,13 @@ decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32535,10 +34738,13 @@ decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32548,10 +34754,13 @@ decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32599,10 +34808,13 @@ decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32612,10 +34824,13 @@ decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32671,10 +34886,13 @@ decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32684,10 +34902,13 @@ decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32748,10 +34969,13 @@ decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32761,10 +34985,13 @@ decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32813,10 +35040,13 @@ decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32826,10 +35056,13 @@ decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32873,10 +35106,13 @@ decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32886,10 +35122,13 @@ decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -32948,10 +35187,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -32961,10 +35203,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33023,10 +35268,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33036,10 +35284,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33098,10 +35349,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33111,10 +35365,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33173,10 +35430,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33186,10 +35446,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33245,10 +35508,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33258,10 +35524,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33320,10 +35589,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33333,10 +35605,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33407,10 +35682,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33420,10 +35698,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33482,10 +35763,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33495,10 +35779,13 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33552,10 +35839,13 @@ decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33565,10 +35855,13 @@ decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33625,10 +35918,13 @@ decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33638,10 +35934,13 @@ decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33695,10 +35994,13 @@ decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33708,10 +36010,13 @@ decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33765,10 +36070,13 @@ decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33778,10 +36086,13 @@ decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33848,10 +36159,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33861,10 +36175,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -33925,10 +36242,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -33938,10 +36258,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34008,10 +36331,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34021,10 +36347,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34085,10 +36414,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34098,10 +36430,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34168,10 +36503,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34181,10 +36519,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34245,10 +36586,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34258,10 +36602,13 @@ decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34329,10 +36676,13 @@ decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34342,10 +36692,13 @@ decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34421,10 +36774,13 @@ decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34434,10 +36790,13 @@ decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34517,10 +36876,13 @@ decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34530,10 +36892,13 @@ decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34585,10 +36950,13 @@ decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34598,10 +36966,13 @@ decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34655,10 +37026,13 @@ decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34668,10 +37042,13 @@ decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34734,10 +37111,13 @@ decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34747,10 +37127,13 @@ decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34811,10 +37194,13 @@ decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34824,10 +37210,13 @@ decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34922,10 +37311,13 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -34935,10 +37327,13 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartRe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -34990,10 +37385,13 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35003,10 +37401,13 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35060,10 +37461,13 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35073,10 +37477,13 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35143,10 +37550,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35156,10 +37566,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35220,10 +37633,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35233,10 +37649,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35303,10 +37722,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35316,10 +37738,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35380,10 +37805,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35393,10 +37821,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35460,10 +37891,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35473,10 +37907,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35537,10 +37974,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35550,10 +37990,13 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35621,10 +38064,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35634,10 +38080,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35709,10 +38158,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35722,10 +38174,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35777,10 +38232,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35790,10 +38248,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35869,10 +38330,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35882,10 +38346,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -35937,10 +38404,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -35950,10 +38420,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36007,10 +38480,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36020,10 +38496,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36077,10 +38556,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36090,10 +38572,13 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36149,10 +38634,13 @@ decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36162,10 +38650,13 @@ decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36226,10 +38717,13 @@ decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36239,10 +38733,13 @@ decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36299,10 +38796,13 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36312,10 +38812,13 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36364,10 +38867,13 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReport
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36377,10 +38883,13 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReport
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36428,10 +38937,13 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationRepo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36441,10 +38953,13 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationRepo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36511,10 +39026,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36524,10 +39042,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36588,10 +39109,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36601,10 +39125,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36660,10 +39187,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36673,10 +39203,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36737,10 +39270,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36750,10 +39286,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36820,10 +39359,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36833,10 +39375,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36897,10 +39442,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36910,10 +39458,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -36969,10 +39520,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -36982,10 +39536,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37046,10 +39603,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37059,10 +39619,13 @@ decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37130,10 +39693,13 @@ decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37143,10 +39709,13 @@ decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37214,10 +39783,13 @@ decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37227,10 +39799,13 @@ decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37282,10 +39857,13 @@ decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37295,10 +39873,13 @@ decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37352,10 +39933,13 @@ decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37365,10 +39949,13 @@ decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37436,10 +40023,13 @@ decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37449,10 +40039,13 @@ decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37520,10 +40113,13 @@ decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37533,10 +40129,13 @@ decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37588,10 +40187,13 @@ decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37601,10 +40203,13 @@ decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37712,10 +40317,13 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37725,10 +40333,13 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37789,10 +40400,13 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStart
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37802,10 +40416,13 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStart
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37892,10 +40509,13 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37905,10 +40525,13 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -37956,10 +40579,13 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -37969,10 +40595,13 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38024,10 +40653,13 @@ decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38037,10 +40669,13 @@ decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38119,10 +40754,13 @@ decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38132,10 +40770,13 @@ decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38209,10 +40850,13 @@ decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38222,10 +40866,13 @@ decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38305,10 +40952,13 @@ decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabil
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38318,10 +40968,13 @@ decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabil
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38369,10 +41022,13 @@ decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabil
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38382,10 +41038,13 @@ decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabil
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38445,10 +41104,13 @@ decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38458,10 +41120,13 @@ decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38521,10 +41186,13 @@ decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38534,10 +41202,13 @@ decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38604,10 +41275,13 @@ decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38617,10 +41291,13 @@ decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38676,10 +41353,13 @@ decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38689,10 +41369,13 @@ decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38747,10 +41430,13 @@ decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38760,10 +41446,13 @@ decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38811,10 +41500,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38824,10 +41516,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38892,10 +41587,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38905,10 +41603,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -38952,10 +41653,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationConti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -38965,10 +41669,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationConti
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39012,10 +41719,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInter
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39025,10 +41735,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInter
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39087,10 +41800,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39100,10 +41816,13 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39180,10 +41899,13 @@ decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39193,10 +41915,13 @@ decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39252,10 +41977,13 @@ decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39265,10 +41993,13 @@ decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39328,10 +42059,13 @@ decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39341,10 +42075,13 @@ decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39400,10 +42137,13 @@ decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39413,10 +42153,13 @@ decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39476,10 +42219,13 @@ decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39489,10 +42235,13 @@ decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39540,10 +42289,13 @@ decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39553,10 +42305,13 @@ decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39604,10 +42359,13 @@ decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39617,10 +42375,13 @@ decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39677,10 +42438,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39690,10 +42454,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39741,10 +42508,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39754,10 +42524,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39813,10 +42586,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39826,10 +42602,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39878,10 +42657,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39891,10 +42673,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -39938,10 +42723,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_disableNotifications(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -39951,10 +42739,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_disableNotifications(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40015,10 +42806,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40028,10 +42822,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40088,10 +42885,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40101,10 +42901,13 @@ decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40164,10 +42967,13 @@ decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40177,10 +42983,13 @@ decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40236,10 +43045,13 @@ decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40249,10 +43061,13 @@ decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40300,10 +43115,13 @@ decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40313,10 +43131,13 @@ decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40367,10 +43188,13 @@ decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40380,10 +43204,13 @@ decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40441,10 +43268,13 @@ decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40454,10 +43284,13 @@ decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40515,10 +43348,13 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40528,10 +43364,13 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40575,10 +43414,13 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40588,10 +43430,13 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40639,10 +43484,13 @@ decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40652,10 +43500,13 @@ decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40703,10 +43554,13 @@ decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40716,10 +43570,13 @@ decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40767,10 +43624,13 @@ decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40780,10 +43640,13 @@ decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40833,10 +43696,13 @@ decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40846,10 +43712,13 @@ decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -40921,10 +43790,13 @@ decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -40934,10 +43806,13 @@ decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41007,10 +43882,13 @@ decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41020,10 +43898,13 @@ decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41079,10 +43960,13 @@ decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41092,10 +43976,13 @@ decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41145,10 +44032,13 @@ decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41158,10 +44048,13 @@ decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41215,10 +44108,13 @@ decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41228,10 +44124,13 @@ decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41283,10 +44182,13 @@ decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41296,10 +44198,13 @@ decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41373,10 +44278,13 @@ decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41386,10 +44294,13 @@ decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41461,10 +44372,13 @@ decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41474,10 +44388,13 @@ decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41527,10 +44444,13 @@ decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41540,10 +44460,13 @@ decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41593,10 +44516,13 @@ decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41606,10 +44532,13 @@ decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41659,10 +44588,13 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41672,10 +44604,13 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41747,10 +44682,13 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41760,10 +44698,13 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41833,10 +44774,13 @@ decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41846,10 +44790,13 @@ decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41917,10 +44864,13 @@ decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41930,10 +44880,13 @@ decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -41984,10 +44937,13 @@ decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -41997,10 +44953,13 @@ decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42052,10 +45011,13 @@ decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42065,10 +45027,13 @@ decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42118,10 +45083,13 @@ decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42131,10 +45099,13 @@ decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packet_info *pinf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42178,10 +45149,13 @@ decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42191,10 +45165,13 @@ decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42238,10 +45215,13 @@ decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42251,10 +45231,13 @@ decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42303,10 +45286,13 @@ decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42316,10 +45302,13 @@ decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42369,10 +45358,13 @@ decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42382,10 +45374,13 @@ decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42435,10 +45430,13 @@ decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42448,10 +45446,13 @@ decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42501,10 +45502,13 @@ decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42514,10 +45518,13 @@ decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42567,10 +45574,13 @@ decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42580,10 +45590,13 @@ decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42638,10 +45651,13 @@ decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42651,10 +45667,13 @@ decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42701,10 +45720,13 @@ decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42714,10 +45736,13 @@ decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42765,10 +45790,13 @@ decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42778,10 +45806,13 @@ decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42827,10 +45858,13 @@ decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42840,10 +45874,13 @@ decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42890,10 +45927,13 @@ decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42903,10 +45943,13 @@ decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -42961,10 +46004,13 @@ decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -42974,10 +46020,13 @@ decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43022,10 +46071,13 @@ decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43035,10 +46087,13 @@ decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43083,10 +46138,13 @@ decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43096,10 +46154,13 @@ decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43143,10 +46204,13 @@ decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43156,10 +46220,13 @@ decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43203,10 +46270,13 @@ decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43216,10 +46286,13 @@ decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43265,10 +46338,13 @@ decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43278,10 +46354,13 @@ decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43331,10 +46410,13 @@ decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43344,10 +46426,13 @@ decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43399,10 +46484,13 @@ decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43412,10 +46500,13 @@ decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43465,10 +46556,13 @@ decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43478,10 +46572,13 @@ decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43533,10 +46630,13 @@ decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43546,10 +46646,13 @@ decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43601,10 +46704,13 @@ decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43614,10 +46720,13 @@ decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43667,10 +46776,13 @@ decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43680,10 +46792,13 @@ decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43733,10 +46848,13 @@ decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43746,10 +46864,13 @@ decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43804,10 +46925,13 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43817,10 +46941,13 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43865,10 +46992,13 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43878,10 +47008,13 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43928,10 +47061,13 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -43941,10 +47077,13 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -43999,10 +47138,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44012,10 +47154,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44059,10 +47204,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44072,10 +47220,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44119,10 +47270,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44132,10 +47286,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44179,10 +47336,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44192,10 +47352,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44245,10 +47408,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44258,10 +47424,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44313,10 +47482,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44326,10 +47498,13 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44385,10 +47560,13 @@ decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44398,10 +47576,13 @@ decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44468,10 +47649,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44481,10 +47665,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44539,10 +47726,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44552,10 +47742,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44622,10 +47815,13 @@ decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44635,10 +47831,13 @@ decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44693,10 +47892,13 @@ decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44706,10 +47908,13 @@ decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44776,10 +47981,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44789,10 +47997,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44847,10 +48058,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44860,10 +48074,13 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44919,10 +48136,13 @@ decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -44932,10 +48152,13 @@ decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -44990,10 +48213,13 @@ decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45003,10 +48229,13 @@ decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45058,10 +48287,13 @@ decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45071,10 +48303,13 @@ decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45129,10 +48364,13 @@ decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45142,10 +48380,13 @@ decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45197,10 +48438,13 @@ decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45210,10 +48454,13 @@ decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45272,10 +48519,13 @@ decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45285,10 +48535,13 @@ decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45344,10 +48597,13 @@ decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45357,10 +48613,13 @@ decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45419,10 +48678,13 @@ decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45432,10 +48694,13 @@ decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45502,10 +48767,13 @@ decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45515,10 +48783,13 @@ decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45573,10 +48844,13 @@ decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45586,10 +48860,13 @@ decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45646,10 +48923,13 @@ decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45659,10 +48939,13 @@ decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45710,10 +48993,13 @@ decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45723,10 +49009,13 @@ decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45791,10 +49080,13 @@ decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45804,10 +49096,13 @@ decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45863,10 +49158,13 @@ decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45876,10 +49174,13 @@ decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -45940,10 +49241,13 @@ decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -45953,10 +49257,13 @@ decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46018,10 +49325,13 @@ decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46031,10 +49341,13 @@ decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46083,10 +49396,13 @@ decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46096,10 +49412,13 @@ decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46143,10 +49462,13 @@ decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46156,10 +49478,13 @@ decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46224,10 +49549,13 @@ decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46237,10 +49565,13 @@ decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46310,10 +49641,13 @@ decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46323,10 +49657,13 @@ decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46388,10 +49725,13 @@ decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46401,10 +49741,13 @@ decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46454,10 +49797,13 @@ decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46467,10 +49813,13 @@ decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46520,10 +49869,13 @@ decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46533,10 +49885,13 @@ decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46590,10 +49945,13 @@ decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46603,10 +49961,13 @@ decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46669,10 +50030,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46682,10 +50046,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46757,10 +50124,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46770,10 +50140,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46836,10 +50209,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46849,10 +50225,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -46946,10 +50325,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -46959,10 +50341,13 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47025,10 +50410,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47038,10 +50426,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47113,10 +50504,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47126,10 +50520,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47192,10 +50589,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47205,10 +50605,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47302,10 +50705,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47315,10 +50721,13 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47381,10 +50790,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47394,10 +50806,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47461,10 +50876,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47474,10 +50892,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47540,10 +50961,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47553,10 +50977,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47631,10 +51058,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47644,10 +51074,13 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47710,10 +51143,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47723,10 +51159,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47790,10 +51229,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47803,10 +51245,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47869,10 +51314,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47882,10 +51330,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -47960,10 +51411,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -47973,10 +51427,13 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48031,10 +51488,13 @@ decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48044,10 +51504,13 @@ decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48099,10 +51562,13 @@ decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48112,10 +51578,13 @@ decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48170,10 +51639,13 @@ decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48183,10 +51655,13 @@ decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48257,10 +51732,13 @@ decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48270,10 +51748,13 @@ decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48336,10 +51817,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48349,10 +51833,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48420,10 +51907,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48433,10 +51923,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48499,10 +51992,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48512,10 +52008,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48594,10 +52093,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48607,10 +52109,13 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48665,10 +52170,13 @@ decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48678,10 +52186,13 @@ decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48753,10 +52264,13 @@ decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48766,10 +52280,13 @@ decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48852,10 +52369,13 @@ decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48865,10 +52385,13 @@ decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -48940,10 +52463,13 @@ decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -48953,10 +52479,13 @@ decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49039,10 +52568,13 @@ decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49052,10 +52584,13 @@ decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49142,10 +52677,13 @@ decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49155,10 +52693,13 @@ decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49256,10 +52797,13 @@ decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49269,10 +52813,13 @@ decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49359,10 +52906,13 @@ decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49372,10 +52922,13 @@ decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49473,10 +53026,13 @@ decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49486,10 +53042,13 @@ decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49537,10 +53096,13 @@ decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49550,10 +53112,13 @@ decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49607,10 +53172,13 @@ decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49620,10 +53188,13 @@ decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49673,10 +53244,13 @@ decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49686,10 +53260,13 @@ decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49754,10 +53331,13 @@ decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49767,10 +53347,13 @@ decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49837,10 +53420,13 @@ decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49850,10 +53436,13 @@ decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -49905,10 +53494,13 @@ decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -49918,10 +53510,13 @@ decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50016,10 +53611,13 @@ decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50029,10 +53627,13 @@ decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50130,10 +53731,13 @@ decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50143,10 +53747,13 @@ decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _U_, packet_i
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50194,10 +53801,13 @@ decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50207,10 +53817,13 @@ decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tvb _U_, packe
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50269,10 +53882,13 @@ decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50282,10 +53898,13 @@ decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50364,10 +53983,13 @@ decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50377,10 +53999,13 @@ decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50470,10 +54095,13 @@ decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50483,10 +54111,13 @@ decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50542,10 +54173,13 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50555,10 +54189,13 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50625,10 +54262,13 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50638,10 +54278,13 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50693,10 +54336,13 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50706,10 +54352,13 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50793,10 +54442,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50806,10 +54458,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50881,10 +54536,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50894,10 +54552,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -50947,10 +54608,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -50960,10 +54624,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51030,10 +54697,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51043,10 +54713,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51110,10 +54783,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51123,10 +54799,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51187,10 +54866,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51200,10 +54882,13 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51255,10 +54940,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51268,10 +54956,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51323,10 +55014,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51336,10 +55030,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51413,10 +55110,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51426,10 +55126,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51492,10 +55195,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51505,10 +55211,13 @@ decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51571,10 +55280,13 @@ decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51584,10 +55296,13 @@ decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51632,10 +55347,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51645,10 +55363,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51695,10 +55416,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createRepository(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51708,10 +55432,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createRepository(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51758,10 +55485,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepository(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51771,10 +55501,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepository(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51820,10 +55553,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51833,10 +55569,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51882,10 +55621,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51895,10 +55637,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -51943,10 +55688,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -51956,10 +55704,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52032,10 +55783,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondition(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52045,10 +55799,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondition(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52095,10 +55852,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52108,10 +55868,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52157,10 +55920,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52170,10 +55936,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52219,10 +55988,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52232,10 +56004,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52280,10 +56055,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52293,10 +56071,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52369,10 +56150,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52382,10 +56166,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52432,10 +56219,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52445,10 +56235,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52494,10 +56287,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52507,10 +56303,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52556,10 +56355,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52569,10 +56371,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52617,10 +56422,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52630,10 +56438,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52678,10 +56489,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52691,10 +56505,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52739,10 +56556,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52752,10 +56572,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52828,10 +56651,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52841,10 +56667,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52891,10 +56720,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52904,10 +56736,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -52953,10 +56788,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -52966,10 +56804,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53015,10 +56856,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53028,10 +56872,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53076,10 +56923,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53089,10 +56939,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53165,10 +57018,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53178,10 +57034,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53228,10 +57087,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53241,10 +57103,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53290,10 +57155,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53303,10 +57171,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53352,10 +57223,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53365,10 +57239,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53413,10 +57290,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53426,10 +57306,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53475,10 +57358,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByNa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53488,10 +57374,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByNa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53538,10 +57427,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53551,10 +57443,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53599,10 +57494,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53612,10 +57510,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53659,10 +57560,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53672,10 +57576,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53738,10 +57645,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53751,10 +57661,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53815,10 +57728,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53828,10 +57744,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53894,10 +57813,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53907,10 +57829,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -53971,10 +57896,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -53984,10 +57912,13 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54034,10 +57965,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54047,10 +57981,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54097,10 +58034,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54110,10 +58050,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54159,10 +58102,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54172,10 +58118,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54221,10 +58170,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54234,10 +58186,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54282,10 +58237,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54295,10 +58253,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54372,10 +58333,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54385,10 +58349,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54435,10 +58402,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_createRepository(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54448,10 +58418,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_createRepository(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54498,10 +58471,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54511,10 +58487,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54560,10 +58539,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepository(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54573,10 +58555,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepository(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54622,10 +58607,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54635,10 +58623,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54683,10 +58674,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54696,10 +58690,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54743,10 +58740,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_startTransaction(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54756,10 +58756,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_startTransaction(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54805,10 +58808,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54818,10 +58824,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54865,10 +58874,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransaction(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54878,10 +58890,13 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransaction(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54926,10 +58941,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -54939,10 +58957,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -54987,10 +59008,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55000,10 +59024,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55050,10 +59077,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55063,10 +59093,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55113,10 +59146,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55126,10 +59162,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55175,10 +59214,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55188,10 +59230,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55237,10 +59282,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55250,10 +59298,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55298,10 +59349,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55311,10 +59365,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55361,10 +59418,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55374,10 +59434,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55424,10 +59487,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55437,10 +59503,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55486,10 +59555,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55499,10 +59571,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55548,10 +59623,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55561,10 +59639,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55609,10 +59690,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55622,10 +59706,13 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55688,10 +59775,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55701,10 +59791,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55767,10 +59860,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55780,10 +59876,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55844,10 +59943,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55857,10 +59959,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55921,10 +60026,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55934,10 +60042,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -55982,10 +60093,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -55995,10 +60109,13 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56043,10 +60160,13 @@ decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56056,10 +60176,13 @@ decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56104,10 +60227,13 @@ decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56117,10 +60243,13 @@ decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56165,10 +60294,13 @@ decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRepository(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56178,10 +60310,13 @@ decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRepository(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56226,10 +60361,13 @@ decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56239,10 +60377,13 @@ decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56299,10 +60440,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56312,10 +60456,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56372,10 +60519,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56385,10 +60535,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56443,10 +60596,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56456,10 +60612,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56514,10 +60673,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56527,10 +60689,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56587,10 +60752,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56600,10 +60768,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56660,10 +60831,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56673,10 +60847,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56731,10 +60908,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56744,10 +60924,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56802,10 +60985,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56815,10 +61001,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56863,10 +61052,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDomain(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56876,10 +61068,13 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDomain(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56924,10 +61119,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -56937,10 +61135,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -56987,10 +61188,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57000,10 +61204,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57050,10 +61257,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57063,10 +61273,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57112,10 +61325,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57125,10 +61341,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57174,10 +61393,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57187,10 +61409,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57235,10 +61460,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57248,10 +61476,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57298,10 +61529,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57311,10 +61545,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57361,10 +61598,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57374,10 +61614,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57423,10 +61666,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57436,10 +61682,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57485,10 +61734,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57498,10 +61750,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57546,10 +61801,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57559,10 +61817,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57609,10 +61870,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57622,10 +61886,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57672,10 +61939,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57685,10 +61955,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57734,10 +62007,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57747,10 +62023,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57796,10 +62075,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57809,10 +62091,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57857,10 +62142,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57870,10 +62158,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -57946,10 +62237,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -57959,10 +62253,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58009,10 +62306,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58022,10 +62322,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58071,10 +62374,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58084,10 +62390,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58133,10 +62442,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58146,10 +62458,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58194,10 +62509,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58207,10 +62525,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58256,10 +62577,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58269,10 +62593,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58335,10 +62662,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58348,10 +62678,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58397,10 +62730,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58410,10 +62746,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58459,10 +62798,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58472,10 +62814,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58520,10 +62865,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58533,10 +62881,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58591,10 +62942,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58604,10 +62958,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58657,10 +63014,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58670,10 +63030,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58726,10 +63089,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58739,10 +63105,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58790,10 +63159,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58803,10 +63175,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58860,10 +63235,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58873,10 +63251,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58924,10 +63305,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -58937,10 +63321,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -58987,10 +63374,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59000,10 +63390,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59050,10 +63443,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59063,10 +63459,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59112,10 +63511,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59125,10 +63527,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59174,10 +63579,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59187,10 +63595,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59235,10 +63646,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59248,10 +63662,13 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59325,10 +63742,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59338,10 +63758,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59402,10 +63825,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59415,10 +63841,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59481,10 +63910,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59494,10 +63926,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59571,10 +64006,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59584,10 +64022,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59648,10 +64089,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59661,10 +64105,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59727,10 +64174,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59740,10 +64190,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59806,10 +64259,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59819,10 +64275,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59894,10 +64353,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59907,10 +64369,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -59973,10 +64438,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -59986,10 +64454,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60061,10 +64532,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60074,10 +64548,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60140,10 +64617,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60153,10 +64633,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60219,10 +64702,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60232,10 +64718,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60307,10 +64796,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60320,10 +64812,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60384,10 +64879,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60397,10 +64895,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60474,10 +64975,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60487,10 +64991,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60564,10 +65071,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60577,10 +65087,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60652,10 +65165,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60665,10 +65181,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60733,10 +65252,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60746,10 +65268,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60842,10 +65367,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60855,10 +65383,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -60940,10 +65471,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -60953,10 +65487,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61030,10 +65567,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61043,10 +65583,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61107,10 +65650,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61120,10 +65666,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61186,10 +65735,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61199,10 +65751,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61276,10 +65831,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61289,10 +65847,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61366,10 +65927,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61379,10 +65943,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61454,10 +66021,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61467,10 +66037,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61542,10 +66115,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61555,10 +66131,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61623,10 +66202,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61636,10 +66218,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61713,10 +66298,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61726,10 +66314,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61803,10 +66394,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61816,10 +66410,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61891,10 +66488,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61904,10 +66504,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -61972,10 +66575,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -61985,10 +66591,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62081,10 +66690,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62094,10 +66706,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62179,10 +66794,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62192,10 +66810,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62258,10 +66879,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62271,10 +66895,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62337,10 +66964,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62350,10 +66980,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62425,10 +67058,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62438,10 +67074,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62513,10 +67152,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesO
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62526,10 +67168,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesO
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62603,10 +67248,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapab
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62616,10 +67264,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapab
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62691,10 +67342,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentit
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62704,10 +67358,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentit
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62772,10 +67429,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62785,10 +67445,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62855,10 +67518,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62868,10 +67534,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -62932,10 +67601,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -62945,10 +67617,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63015,10 +67690,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttribu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63028,10 +67706,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttribu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63101,10 +67782,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAtt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63114,10 +67798,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAtt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63191,10 +67878,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63204,10 +67894,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63268,10 +67961,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63281,10 +67977,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63354,10 +68053,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63367,10 +68069,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63444,10 +68149,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAtt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63457,10 +68165,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAtt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63534,10 +68245,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityType
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63547,10 +68261,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityType
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63622,10 +68339,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63635,10 +68355,13 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63705,10 +68428,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63718,10 +68444,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63782,10 +68511,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63795,10 +68527,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63865,10 +68600,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63878,10 +68616,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -63951,10 +68692,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttribute
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -63964,10 +68708,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttribute
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64041,10 +68788,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64054,10 +68804,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64118,10 +68871,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64131,10 +68887,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64204,10 +68963,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64217,10 +68979,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64294,10 +69059,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttribute
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64307,10 +69075,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttribute
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64384,10 +69155,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttrib
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64397,10 +69171,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttrib
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64472,10 +69249,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64485,10 +69265,13 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttribut
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64555,10 +69338,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64568,10 +69354,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64632,10 +69421,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64645,10 +69437,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64715,10 +69510,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttribu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64728,10 +69526,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttribu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64801,10 +69602,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAtt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64814,10 +69618,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAtt
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64891,10 +69698,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64904,10 +69714,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -64968,10 +69781,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -64981,10 +69797,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65054,10 +69873,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65067,10 +69889,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65144,10 +69969,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttribu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65157,10 +69985,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttribu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65234,10 +70065,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65247,10 +70081,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65322,10 +70159,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttrib
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65335,10 +70175,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttrib
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65412,10 +70255,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesTo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65425,10 +70271,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesTo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65502,10 +70351,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilities
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65515,10 +70367,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilities
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65590,10 +70445,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfTy
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65603,10 +70461,13 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfTy
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65682,10 +70543,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65695,10 +70559,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65745,10 +70612,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65758,10 +70628,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface(tvbuf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65828,10 +70701,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65841,10 +70717,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -65915,10 +70794,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -65928,10 +70810,13 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvbu
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66013,10 +70898,13 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66026,10 +70914,13 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66109,10 +71000,13 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66122,10 +71016,13 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66218,10 +71115,13 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66231,10 +71131,13 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66316,10 +71219,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66329,10 +71235,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66414,10 +71323,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66427,10 +71339,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66510,10 +71425,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66523,10 +71441,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66606,10 +71527,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66619,10 +71543,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66715,10 +71642,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66728,10 +71658,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66824,10 +71757,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66837,10 +71773,13 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -66939,10 +71878,13 @@ decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -66952,10 +71894,13 @@ decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67054,10 +71999,13 @@ decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67067,10 +72015,13 @@ decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67144,10 +72095,13 @@ decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67157,10 +72111,13 @@ decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67238,10 +72195,13 @@ decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67251,10 +72211,13 @@ decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67330,10 +72293,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67343,10 +72309,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67393,10 +72362,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67406,10 +72378,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67476,10 +72451,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67489,10 +72467,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67563,10 +72544,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67576,10 +72560,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67640,10 +72627,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67653,10 +72643,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67717,10 +72710,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67730,10 +72726,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67796,10 +72795,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67809,10 +72811,13 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67878,10 +72883,13 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67891,10 +72899,13 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -67950,10 +72961,13 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -67963,10 +72977,13 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68031,10 +73048,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68044,10 +73064,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68111,10 +73134,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68124,10 +73150,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68214,10 +73243,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68227,10 +73259,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68293,10 +73328,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68306,10 +73344,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvbuff_t *tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68372,10 +73413,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68385,10 +73429,13 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvbuff_t *tvb _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68464,10 +73511,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68477,10 +73527,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68527,10 +73580,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68540,10 +73596,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68610,10 +73669,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68623,10 +73685,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68697,10 +73762,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68710,10 +73778,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68774,10 +73845,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68787,10 +73861,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68851,10 +73928,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68864,10 +73944,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68930,10 +74013,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -68943,10 +74029,13 @@ decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -68998,10 +74087,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69011,10 +74103,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69081,10 +74176,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69094,10 +74192,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69141,10 +74242,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69154,10 +74258,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted(tv
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69201,10 +74308,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69214,10 +74324,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69269,10 +74382,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69282,10 +74398,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminat
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69348,10 +74467,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69361,10 +74483,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes(
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69427,10 +74552,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMedia
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69440,10 +74568,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMedia
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69500,10 +74631,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69513,10 +74647,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69585,10 +74722,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69598,10 +74738,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging(tvbuff
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69668,10 +74811,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69681,10 +74827,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69732,10 +74881,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69745,10 +74897,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69814,10 +74969,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69827,10 +74985,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvbuff_t *t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69884,10 +75045,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69897,10 +75061,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -69949,10 +75116,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -69962,10 +75132,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications(tvbuff_t *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70009,10 +75182,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70022,10 +75198,13 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications(tvbuff_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70079,10 +75258,13 @@ decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70092,10 +75274,13 @@ decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70156,10 +75341,13 @@ decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70169,10 +75357,13 @@ decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70239,10 +75430,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70252,10 +75446,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70318,10 +75515,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70331,10 +75531,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70386,10 +75589,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70399,10 +75605,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70463,10 +75672,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70476,10 +75688,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70531,10 +75746,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70544,10 +75762,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70608,10 +75829,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70621,10 +75845,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70676,10 +75903,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70689,10 +75919,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70753,10 +75986,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70766,10 +76002,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70823,10 +76062,13 @@ decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70836,10 +76078,13 @@ decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70900,10 +76145,13 @@ decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70913,10 +76161,13 @@ decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -70968,10 +76219,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -70981,10 +76235,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71045,10 +76302,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71058,10 +76318,13 @@ decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71113,10 +76376,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71126,10 +76392,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71190,10 +76459,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71203,10 +76475,13 @@ decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71258,10 +76533,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71271,10 +76549,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71335,10 +76616,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71348,10 +76632,13 @@ decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_, packet_inf
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71434,10 +76721,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71447,10 +76737,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71511,10 +76804,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71524,10 +76820,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71598,10 +76897,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71611,10 +76913,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71675,10 +76980,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71688,10 +76996,13 @@ decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71762,10 +77073,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71775,10 +77089,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71839,10 +77156,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71852,10 +77172,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *tvb _U_, pack
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -71925,10 +77248,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -71938,10 +77264,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72002,10 +77331,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72015,10 +77347,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72089,10 +77424,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72102,10 +77440,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72166,10 +77507,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72179,10 +77523,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72249,10 +77596,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72262,10 +77612,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72326,10 +77679,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72339,10 +77695,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72412,10 +77771,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72425,10 +77787,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72500,10 +77865,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72513,10 +77881,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72588,10 +77959,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72601,10 +77975,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72676,10 +78053,13 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72689,10 +78069,13 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72765,10 +78148,13 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72778,10 +78164,13 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72842,10 +78231,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72855,10 +78247,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72919,10 +78314,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -72932,10 +78330,13 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -72996,10 +78397,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73009,10 +78413,13 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73060,10 +78467,13 @@ decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73073,10 +78483,13 @@ decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73128,10 +78541,13 @@ decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73141,10 +78557,13 @@ decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73196,10 +78615,13 @@ decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73209,10 +78631,13 @@ decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73264,10 +78689,13 @@ decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73277,10 +78705,13 @@ decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73334,10 +78765,13 @@ decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73347,10 +78781,13 @@ decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73404,10 +78841,13 @@ decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73417,10 +78857,13 @@ decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73487,10 +78930,13 @@ decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73500,10 +78946,13 @@ decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73559,10 +79008,13 @@ decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73572,10 +79024,13 @@ decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73631,10 +79086,13 @@ decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73644,10 +79102,13 @@ decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73701,10 +79162,13 @@ decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73714,10 +79178,13 @@ decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73781,10 +79248,13 @@ decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73794,10 +79264,13 @@ decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73855,10 +79328,13 @@ decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73868,10 +79344,13 @@ decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb _U_, packet
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -73938,10 +79417,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -73951,10 +79433,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74008,10 +79493,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74021,10 +79509,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74078,10 +79569,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74091,10 +79585,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U_, packet_in
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74148,10 +79645,13 @@ decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74161,10 +79661,13 @@ decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74214,10 +79717,13 @@ decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74227,10 +79733,13 @@ decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74282,10 +79791,13 @@ decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74295,10 +79807,13 @@ decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74350,10 +79865,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74363,10 +79881,13 @@ decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74436,10 +79957,13 @@ decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74449,10 +79973,13 @@ decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74504,10 +80031,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74517,10 +80047,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74581,10 +80114,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74594,10 +80130,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74649,10 +80188,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74662,10 +80204,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74726,10 +80271,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74739,10 +80287,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuff_t *tvb _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74813,10 +80364,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74826,10 +80380,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74890,10 +80447,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74903,10 +80463,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -74972,10 +80535,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -74985,10 +80551,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tvbuff_t *tvb
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -75069,10 +80638,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -75082,10 +80654,13 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -75204,10 +80779,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -75217,10 +80795,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -75272,10 +80853,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -75285,10 +80869,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t *tvb _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -75340,10 +80927,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -75353,10 +80943,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *tvb _U_, pac
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -75404,10 +80997,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -75417,10 +81013,13 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_, packet_info
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
diff --git a/epan/dissectors/packet-tango.c b/epan/dissectors/packet-tango.c
index 45a8f08062..0657c476d2 100644
--- a/epan/dissectors/packet-tango.c
+++ b/epan/dissectors/packet-tango.c
@@ -46,6 +46,7 @@ static int hf_operationrequest = -1;/* Request_Operation field */
#include <epan/packet.h>
#include <epan/proto.h>
#include <epan/dissectors/packet-giop.h>
+#include <epan/expert.h>
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
@@ -522,10 +523,13 @@ decode_Tango_Device_command_inout(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -535,10 +539,13 @@ decode_Tango_Device_command_inout(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -612,10 +619,13 @@ decode_Tango_Device_get_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -625,10 +635,13 @@ decode_Tango_Device_get_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -691,10 +704,13 @@ decode_Tango_Device_set_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -704,10 +720,13 @@ decode_Tango_Device_set_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -781,10 +800,13 @@ decode_Tango_Device_read_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -794,10 +816,13 @@ decode_Tango_Device_read_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -860,10 +885,13 @@ decode_Tango_Device_write_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -873,10 +901,13 @@ decode_Tango_Device_write_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -920,10 +951,13 @@ decode_Tango_Device_ping(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -933,10 +967,13 @@ decode_Tango_Device_ping(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -995,10 +1032,13 @@ decode_Tango_Device_black_box(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1008,10 +1048,13 @@ decode_Tango_Device_black_box(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1061,10 +1104,13 @@ decode_Tango_Device_info(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1074,10 +1120,13 @@ decode_Tango_Device_info(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1138,10 +1187,13 @@ decode_Tango_Device_command_list_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1151,10 +1203,13 @@ decode_Tango_Device_command_list_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1206,10 +1261,13 @@ decode_Tango_Device_command_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1219,10 +1277,13 @@ decode_Tango_Device_command_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1277,10 +1338,13 @@ decode_Tango_Device_2_command_inout_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1290,10 +1354,13 @@ decode_Tango_Device_2_command_inout_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1374,10 +1441,13 @@ decode_Tango_Device_2_read_attributes_2(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1387,10 +1457,13 @@ decode_Tango_Device_2_read_attributes_2(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1464,10 +1537,13 @@ decode_Tango_Device_2_get_attribute_config_2(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1477,10 +1553,13 @@ decode_Tango_Device_2_get_attribute_config_2(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1541,10 +1620,13 @@ decode_Tango_Device_2_command_list_query_2(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1554,10 +1636,13 @@ decode_Tango_Device_2_command_list_query_2(tvbuff_t *tvb _U_, packet_info *pinfo
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1609,10 +1694,13 @@ decode_Tango_Device_2_command_query_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1622,10 +1710,13 @@ decode_Tango_Device_2_command_query_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1692,10 +1783,13 @@ decode_Tango_Device_2_command_inout_history_2(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1705,10 +1799,13 @@ decode_Tango_Device_2_command_inout_history_2(tvbuff_t *tvb _U_, packet_info *pi
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1775,10 +1872,13 @@ decode_Tango_Device_2_read_attribute_history_2(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1788,10 +1888,13 @@ decode_Tango_Device_2_read_attribute_history_2(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1872,10 +1975,13 @@ decode_Tango_Device_3_read_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1885,10 +1991,13 @@ decode_Tango_Device_3_read_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _U
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -1951,10 +2060,13 @@ decode_Tango_Device_3_write_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -1964,10 +2076,13 @@ decode_Tango_Device_3_write_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -2034,10 +2149,13 @@ decode_Tango_Device_3_read_attribute_history_3(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -2047,10 +2165,13 @@ decode_Tango_Device_3_read_attribute_history_3(tvbuff_t *tvb _U_, packet_info *p
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -2100,10 +2221,13 @@ decode_Tango_Device_3_info_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -2113,10 +2237,13 @@ decode_Tango_Device_3_info_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tr
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -2190,10 +2317,13 @@ decode_Tango_Device_3_get_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -2203,10 +2333,13 @@ decode_Tango_Device_3_get_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;
@@ -2269,10 +2402,13 @@ decode_Tango_Device_3_set_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown Exception */
-
- g_warning("Unknown Exception ");
+ /* Unknown Exception */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown exception %d", header->rep_status);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);
+ }
break;
@@ -2282,10 +2418,13 @@ decode_Tango_Device_3_set_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pin
break;
default:
+ {
+ proto_item *pi;
- /* Unknown GIOP Message */
-
- g_warning("Unknown GIOP Message");
+ /* Unknown GIOP Message */
+ pi = proto_tree_add_text(tree, tvb, 0, 0, "Unknown GIOP message %d", header->message_type);
+ expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);
+ }
break;