aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-04-17 18:10:23 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-04-17 18:10:23 +0000
commit69b54d4d235a75a8ff8bb5efc05f4e7b2496a7aa (patch)
treebbc7462e878b1edccefd9a482a9bdd61dfbff853 /plugins
parentb59ad33b638fffaf9e13a412d3063f9d4e87b51d (diff)
From W. Borgert:
- Regenerated files. - Use .sort() on one or two of the lists in ethereal_gen.py to make generated files more diff-friendly in the future. svn path=/trunk/; revision=17885
Diffstat (limited to 'plugins')
-rw-r--r--plugins/giop/packet-coseventcomm.c37
-rw-r--r--plugins/giop/packet-cosnaming.c67
-rw-r--r--plugins/giop/packet-parlay.c15468
-rw-r--r--plugins/giop/packet-tango.c1176
4 files changed, 9268 insertions, 7480 deletions
diff --git a/plugins/giop/packet-coseventcomm.c b/plugins/giop/packet-coseventcomm.c
index 212ebe11b3..6e3404e189 100644
--- a/plugins/giop/packet-coseventcomm.c
+++ b/plugins/giop/packet-coseventcomm.c
@@ -698,7 +698,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
return tree;
}
-static gboolean dissect_coseventcomm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname _U_) {
+static gboolean dissect_coseventcomm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) {
gboolean be; /* big endianess */
proto_tree *tree _U_;
@@ -721,43 +721,50 @@ static gboolean dissect_coseventcomm(tvbuff_t *tvb, packet_info *pinfo, proto_tr
case Reply:
- if (strcmp(operation, CosEventComm_PushConsumer_push_op) == 0) {
+ if (strcmp(operation, CosEventComm_PushConsumer_push_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PushConsumer") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PushConsumer_push(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosEventComm_PushConsumer_disconnect_push_consumer_op) == 0) {
+ if (strcmp(operation, CosEventComm_PushConsumer_disconnect_push_consumer_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PushConsumer") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PushConsumer_disconnect_push_consumer(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosEventComm_PushSupplier_disconnect_push_supplier_op) == 0) {
+ if (strcmp(operation, CosEventComm_PushSupplier_disconnect_push_supplier_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PushSupplier") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PushSupplier_disconnect_push_supplier(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosEventComm_PullSupplier_pull_op) == 0) {
+ if (strcmp(operation, CosEventComm_PullSupplier_pull_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PullSupplier") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PullSupplier_pull(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosEventComm_PullSupplier_try_pull_op) == 0) {
+ if (strcmp(operation, CosEventComm_PullSupplier_try_pull_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PullSupplier") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PullSupplier_try_pull(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosEventComm_PullSupplier_disconnect_pull_supplier_op) == 0) {
+ if (strcmp(operation, CosEventComm_PullSupplier_disconnect_pull_supplier_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PullSupplier") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PullSupplier_disconnect_pull_supplier(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosEventComm_PullConsumer_disconnect_pull_consumer_op) == 0) {
+ if (strcmp(operation, CosEventComm_PullConsumer_disconnect_pull_consumer_op) == 0
+ && (!idlname || strcmp(idlname, "CosEventComm/PullConsumer") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosEventComm_PullConsumer_disconnect_pull_consumer(tvb, pinfo, tree, offset, header, operation);
return TRUE;
@@ -828,43 +835,35 @@ void proto_register_handoff_giop_coseventcomm(void) {
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PullSupplier", proto_coseventcomm ); /* explicit dissector */
+ register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PullConsumer", proto_coseventcomm ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PushConsumer", proto_coseventcomm ); /* explicit dissector */
+ register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PullSupplier", proto_coseventcomm ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PullConsumer", proto_coseventcomm ); /* explicit dissector */
+ register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PushConsumer", proto_coseventcomm ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PushSupplier", proto_coseventcomm ); /* explicit dissector */
- #endif
diff --git a/plugins/giop/packet-cosnaming.c b/plugins/giop/packet-cosnaming.c
index f0645551a4..8e81da8faf 100644
--- a/plugins/giop/packet-cosnaming.c
+++ b/plugins/giop/packet-cosnaming.c
@@ -1471,23 +1471,25 @@ static void decode_CosNaming_NameComponent_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NameComponent_id = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NameComponent_id[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NameComponent_kind = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NameComponent_kind[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1568,7 +1570,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
return tree;
}
-static gboolean dissect_cosnaming(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname _U_) {
+static gboolean dissect_cosnaming(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) {
gboolean be; /* big endianess */
proto_tree *tree _U_;
@@ -1591,79 +1593,92 @@ static gboolean dissect_cosnaming(tvbuff_t *tvb, packet_info *pinfo, proto_tree
case Reply:
- if (strcmp(operation, CosNaming_NamingContext_bind_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_bind_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_bind(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_rebind_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_rebind_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_rebind(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_bind_context_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_bind_context_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_bind_context(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_rebind_context_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_rebind_context_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_rebind_context(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_resolve_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_resolve_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_resolve(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_unbind_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_unbind_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_unbind(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_new_context_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_new_context_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_new_context(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_bind_new_context_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_bind_new_context_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_bind_new_context(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_destroy_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_destroy_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_destroy(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_NamingContext_list_op) == 0) {
+ if (strcmp(operation, CosNaming_NamingContext_list_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/NamingContext") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_NamingContext_list(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_BindingIterator_next_one_op) == 0) {
+ if (strcmp(operation, CosNaming_BindingIterator_next_one_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/BindingIterator") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_BindingIterator_next_one(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_BindingIterator_next_n_op) == 0) {
+ if (strcmp(operation, CosNaming_BindingIterator_next_n_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/BindingIterator") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_BindingIterator_next_n(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, CosNaming_BindingIterator_destroy_op) == 0) {
+ if (strcmp(operation, CosNaming_BindingIterator_destroy_op) == 0
+ && (!idlname || strcmp(idlname, "CosNaming/BindingIterator") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_CosNaming_BindingIterator_destroy(tvb, pinfo, tree, offset, header, operation);
return TRUE;
@@ -1734,23 +1749,19 @@ void proto_register_handoff_giop_cosnaming(void) {
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_cosnaming, "COSNAMING", "CosNaming/BindingIterator", proto_cosnaming ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_cosnaming, "COSNAMING", "CosNaming/NamingContext", proto_cosnaming ); /* explicit dissector */
- #endif
diff --git a/plugins/giop/packet-parlay.c b/plugins/giop/packet-parlay.c
index eb5b1671c7..c0d544f2fe 100644
--- a/plugins/giop/packet-parlay.c
+++ b/plugins/giop/packet-parlay.c
@@ -332,6 +332,13 @@ static void decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet
+/* Struct = IDL:org/csapi/ui/TpUIEventInfo:1.0 */
+
+static void decode_org_csapi_ui_TpUIEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_);
+
+
+
+
/* Struct = IDL:org/csapi/ui/TpUIEventCriteria:1.0 */
static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_);
@@ -3004,159 +3011,159 @@ static const char org_csapi_mmm_IpMultiMediaMessaging_close_op[] = "close" ;
/* Begin Exception (containing members) String Declare */
-static const char user_exception_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE[] = "IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_ACCESS_TYPE[] = "IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID[] = "IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_ASSIGNMENT_ID[] = "IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT[] = "IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_EVENT_TYPE[] = "IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_INTERFACE_NAME[] = "IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_INTERFACE_TYPE[] = "IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0" ;
+static const char user_exception_org_csapi_P_UNKNOWN_SUBSCRIBER[] = "IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0" ;
static const char user_exception_org_csapi_P_INFORMATION_NOT_AVAILABLE[] = "IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_IPSUBNET[] = "IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SIGNATURE[] = "IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0" ;
-static const char user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE[] = "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM[] = "IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_CRITERIA[] = "IDL:org/csapi/P_INVALID_CRITERIA:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_SESSION_ID[] = "IDL:org/csapi/P_INVALID_SESSION_ID:1.0" ;
+static const char user_exception_org_csapi_TpCommonExceptions[] = "IDL:org/csapi/TpCommonExceptions:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_CURRENCY[] = "IDL:org/csapi/P_INVALID_CURRENCY:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_AMOUNT[] = "IDL:org/csapi/P_INVALID_AMOUNT:1.0" ;
+static const char user_exception_org_csapi_P_APPLICATION_NOT_ACTIVATED[] = "IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0" ;
static const char user_exception_org_csapi_P_INVALID_ADDRESS[] = "IDL:org/csapi/P_INVALID_ADDRESS:1.0" ;
static const char user_exception_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN[] = "IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS[] = "IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID[] = "IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0" ;
-static const char user_exception_org_csapi_cm_P_ILLEGAL_TAG[] = "IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_CLIENT_APP_ID[] = "IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0" ;
-static const char user_exception_org_csapi_policy_P_ACCESS_VIOLATION[] = "IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_SESSION_ID[] = "IDL:org/csapi/P_INVALID_SESSION_ID:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED[] = "IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0" ;
+static const char user_exception_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE[] = "IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_VERSION[] = "IDL:org/csapi/P_INVALID_VERSION:1.0" ;
+static const char user_exception_org_csapi_P_INVALID_NETWORK_STATE[] = "IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_ID[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0" ;
static const char user_exception_org_csapi_fw_P_SERVICE_ACCESS_DENIED[] = "IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0" ;
+static const char user_exception_org_csapi_fw_P_ACCESS_DENIED[] = "IDL:org/csapi/fw/P_ACCESS_DENIED:1.0" ;
+static const char user_exception_org_csapi_fw_P_SERVICE_NOT_ENABLED[] = "IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0" ;
+static const char user_exception_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY[] = "IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_AGREEMENT_TEXT[] = "IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_TOKEN[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SIGNATURE[] = "IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM[] = "IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_DOMAIN_ID[] = "IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_PROPERTY[] = "IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_ACCESS_TYPE[] = "IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0" ;
+static const char user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE[] = "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0" ;
+static const char user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE[] = "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0" ;
static const char user_exception_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY[] = "IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_IDENTITY_EXISTS[] = "IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT[] = "IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_AMOUNT[] = "IDL:org/csapi/P_INVALID_AMOUNT:1.0" ;
-static const char user_exception_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM[] = "IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED[] = "IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATES[] = "IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0" ;
-static const char user_exception_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE[] = "IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID[] = "IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID[] = "IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0" ;
+static const char user_exception_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME[] = "IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0" ;
+static const char user_exception_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH[] = "IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_CLIENT_APP_ID[] = "IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_AUTH_TYPE[] = "IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0" ;
static const char user_exception_org_csapi_fw_P_INVALID_SAG_ID[] = "IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0" ;
-static const char user_exception_org_csapi_P_UNKNOWN_SUBSCRIBER[] = "IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_SAP[] = "IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID[] = "IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0" ;
+static const char user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_ID[] = "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0" ;
static const char user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_ID[] = "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_DSCODEPOINT[] = "IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_NO_CAPABILITY[] = "IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0" ;
-static const char user_exception_org_csapi_fw_P_SERVICE_NOT_ENABLED[] = "IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_CANNOT_CANCEL[] = "IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0" ;
+static const char user_exception_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE[] = "IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_ADDITION_TO_SAG[] = "IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0" ;
+static const char user_exception_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT[] = "IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0" ;
static const char user_exception_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM[] = "IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_PROPERTY[] = "IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_MEMBER[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0" ;
-static const char user_exception_org_csapi_cs_P_INVALID_REQUEST_NUMBER[] = "IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0" ;
-static const char user_exception_org_csapi_cm_P_ILLEGAL_VALUE[] = "IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0" ;
-static const char user_exception_org_csapi_am_P_UNAUTHORIZED_APPLICATION[] = "IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0" ;
-static const char user_exception_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED[] = "IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH[] = "IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0" ;
+static const char user_exception_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM[] = "IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0" ;
+static const char user_exception_org_csapi_ui_P_ID_NOT_FOUND[] = "IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0" ;
+static const char user_exception_org_csapi_ui_P_ILLEGAL_ID[] = "IDL:org/csapi/ui/P_ILLEGAL_ID:1.0" ;
+static const char user_exception_org_csapi_ui_P_ILLEGAL_RANGE[] = "IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0" ;
static const char user_exception_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA[] = "IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE[] = "IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_INVALID_FOLDER_ID[] = "IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0" ;
-static const char user_exception_org_csapi_cm_P_ILLEGAL_SITE_ID[] = "IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_VPRP_ID[] = "IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE[] = "IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_GROUP[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_PART_ID[] = "IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0" ;
+static const char user_exception_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED[] = "IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0" ;
static const char user_exception_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED[] = "IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_INVALID_CREDENTIAL[] = "IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_INTERFACE_NAME[] = "IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_VPRP[] = "IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0" ;
-static const char user_exception_org_csapi_cm_P_ILLEGAL_VPRPID[] = "IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_TOKEN[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_AUTH_TYPE[] = "IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_AGENT[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0" ;
-static const char user_exception_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH[] = "IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0" ;
-static const char user_exception_org_csapi_policy_P_NAME_SPACE_ERROR[] = "IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE[] = "IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0" ;
-static const char user_exception_org_csapi_cs_P_INVALID_VOLUME[] = "IDL:org/csapi/cs/P_INVALID_VOLUME:1.0" ;
-static const char user_exception_org_csapi_cm_P_ILLEGAL_COMBINATION[] = "IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0" ;
+static const char user_exception_org_csapi_mm_P_INVALID_REPORTING_INTERVAL[] = "IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0" ;
+static const char user_exception_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED[] = "IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0" ;
+static const char user_exception_org_csapi_termcap_P_INVALID_TERMINAL_ID[] = "IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_INVALID_FOLDER_ID[] = "IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE[] = "IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION[] = "IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_INVALID_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID[] = "IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED[] = "IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE[] = "IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0" ;
static const char user_exception_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_VPRN[] = "IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_CRITERIA[] = "IDL:org/csapi/P_INVALID_CRITERIA:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_SITE_ID[] = "IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_MAILBOX_LOCKED[] = "IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_PROPERTY_NOT_SET[] = "IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_FOLDER_IS_OPEN[] = "IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0" ;
+static const char user_exception_org_csapi_gms_P_GMS_MAILBOX_OPEN[] = "IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_VPRP_ID[] = "IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_SLA_ID[] = "IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_TYPE_ASSOCIATED[] = "IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED[] = "IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0" ;
-static const char user_exception_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME[] = "IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT[] = "IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_STATUS[] = "IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_QOS_INFO[] = "IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO[] = "IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO[] = "IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_NOT_MEMBER[] = "IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK[] = "IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0" ;
-static const char user_exception_org_csapi_cs_P_INVALID_USER[] = "IDL:org/csapi/cs/P_INVALID_USER:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_DSCODEPOINT[] = "IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0" ;
+static const char user_exception_org_csapi_cm_P_ILLEGAL_VPRPID[] = "IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0" ;
static const char user_exception_org_csapi_cm_P_ILLEGAL_REF_VALUE[] = "IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_EVENT_TYPE[] = "IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0" ;
-static const char user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE[] = "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE[] = "IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0" ;
-static const char user_exception_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE[] = "IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ALIAS[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_ID[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_IS_CYCLIC[] = "IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS[] = "IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_VERSION[] = "IDL:org/csapi/P_INVALID_VERSION:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_INTERFACE[] = "IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0" ;
+static const char user_exception_org_csapi_cm_P_CANT_DELETE_VPRP[] = "IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATES[] = "IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_MENU[] = "IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_SAPS[] = "IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_STATUS[] = "IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID[] = "IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0" ;
-static const char user_exception_org_csapi_P_APPLICATION_NOT_ACTIVATED[] = "IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_PROPERTY[] = "IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_PROPERTY_NOT_SET[] = "IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION[] = "IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0" ;
-static const char user_exception_org_csapi_fw_P_ACCESS_DENIED[] = "IDL:org/csapi/fw/P_ACCESS_DENIED:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK[] = "IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE[] = "IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0" ;
-static const char user_exception_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED[] = "IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0" ;
-static const char user_exception_org_csapi_cs_P_INVALID_ACCOUNT[] = "IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0" ;
-static const char user_exception_org_csapi_ui_P_ILLEGAL_ID[] = "IDL:org/csapi/ui/P_ILLEGAL_ID:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_FOLDER_IS_OPEN[] = "IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_AGENT_EXISTS[] = "IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_DESCRIPTION[] = "IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_ASSIGNMENT_ID[] = "IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_CURRENCY[] = "IDL:org/csapi/P_INVALID_CURRENCY:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_HEADER[] = "IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0" ;
-static const char user_exception_org_csapi_ui_P_ID_NOT_FOUND[] = "IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_TYPE_EXISTS[] = "IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_NETWORK_STATE[] = "IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION[] = "IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_DOMAIN_ID[] = "IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0" ;
-static const char user_exception_org_csapi_cm_P_CANT_DELETE_VPRP[] = "IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME[] = "IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE[] = "IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0" ;
-static const char user_exception_org_csapi_P_INVALID_INTERFACE_TYPE[] = "IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0" ;
-static const char user_exception_org_csapi_termcap_P_INVALID_TERMINAL_ID[] = "IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0" ;
+static const char user_exception_org_csapi_cm_P_ILLEGAL_SLA_ID[] = "IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0" ;
+static const char user_exception_org_csapi_cm_P_ILLEGAL_TAG[] = "IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0" ;
+static const char user_exception_org_csapi_cm_P_ILLEGAL_VALUE[] = "IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0" ;
+static const char user_exception_org_csapi_cm_P_ILLEGAL_COMBINATION[] = "IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_SITES[] = "IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_VPRN[] = "IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0" ;
+static const char user_exception_org_csapi_cm_P_ILLEGAL_SITE_ID[] = "IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_SITE_ID[] = "IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_SAPS[] = "IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_SITE_LOCATION[] = "IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_MAILBOX_OPEN[] = "IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_QOS_INFO[] = "IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_NOT_REGISTERED[] = "IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0" ;
-static const char user_exception_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY[] = "IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0" ;
-static const char user_exception_org_csapi_ui_P_ILLEGAL_RANGE[] = "IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_TYPE[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_INTERFACE[] = "IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_MAILBOX[] = "IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0" ;
static const char user_exception_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION[] = "IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO[] = "IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_IPSUBNET[] = "IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_SAP[] = "IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0" ;
+static const char user_exception_org_csapi_cm_P_UNKNOWN_VPRP[] = "IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0" ;
+static const char user_exception_org_csapi_am_P_UNAUTHORIZED_APPLICATION[] = "IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0" ;
+static const char user_exception_org_csapi_cs_P_INVALID_USER[] = "IDL:org/csapi/cs/P_INVALID_USER:1.0" ;
+static const char user_exception_org_csapi_cs_P_INVALID_ACCOUNT[] = "IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0" ;
+static const char user_exception_org_csapi_cs_P_INVALID_REQUEST_NUMBER[] = "IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0" ;
+static const char user_exception_org_csapi_cs_P_INVALID_VOLUME[] = "IDL:org/csapi/cs/P_INVALID_VOLUME:1.0" ;
+static const char user_exception_org_csapi_policy_P_ACCESS_VIOLATION[] = "IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0" ;
static const char user_exception_org_csapi_policy_P_SYNTAX_ERROR[] = "IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0" ;
-static const char user_exception_org_csapi_mm_P_INVALID_REPORTING_INTERVAL[] = "IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH[] = "IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_MAILBOX_LOCKED[] = "IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0" ;
-static const char user_exception_org_csapi_cm_P_ILLEGAL_SLA_ID[] = "IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_MEMBER_EXISTS[] = "IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_INVALID_MAILBOX[] = "IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0" ;
-static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0" ;
-static const char user_exception_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME[] = "IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0" ;
+static const char user_exception_org_csapi_policy_P_NAME_SPACE_ERROR[] = "IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0" ;
static const char user_exception_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS[] = "IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0" ;
-static const char user_exception_org_csapi_TpCommonExceptions[] = "IDL:org/csapi/TpCommonExceptions:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_ADDITION_TO_SAG[] = "IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0" ;
-static const char user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_ID[] = "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0" ;
-static const char user_exception_org_csapi_fw_P_INVALID_AGREEMENT_TEXT[] = "IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0" ;
-static const char user_exception_org_csapi_cm_P_UNKNOWN_SITES[] = "IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0" ;
static const char user_exception_org_csapi_policy_P_TRANSACTION_IN_PROCESS[] = "IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0" ;
-static const char user_exception_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE[] = "IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_TYPE[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_MEMBER[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_GROUP[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_ALIAS[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNKNOWN_AGENT[] = "IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS[] = "IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_TYPE_EXISTS[] = "IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_TYPE_ASSOCIATED[] = "IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_NOT_REGISTERED[] = "IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_NOT_MEMBER[] = "IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_NO_CAPABILITY[] = "IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_MEMBER_EXISTS[] = "IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_IS_CYCLIC[] = "IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_IDENTITY_EXISTS[] = "IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE[] = "IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS[] = "IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE[] = "IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0" ;
static const char user_exception_org_csapi_pam_P_PAM_ALIAS_EXISTS[] = "IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_AGENT_EXISTS[] = "IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE[] = "IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0" ;
+static const char user_exception_org_csapi_pam_P_PAM_INVALID_CREDENTIAL[] = "IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION[] = "IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_MAILBOX[] = "IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE[] = "IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED[] = "IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID[] = "IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID[] = "IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_PART_ID[] = "IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH[] = "IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH[] = "IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_PROPERTY[] = "IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME[] = "IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME[] = "IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED[] = "IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE[] = "IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_CANNOT_CANCEL[] = "IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0" ;
+static const char user_exception_org_csapi_mmm_P_MMM_INVALID_HEADER[] = "IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0" ;
/* End Exception (containing members) String Declare */
@@ -5340,9 +5347,9 @@ static const value_string org_csapi_mmm_TpMessagingError[] = {
-/* Exception = IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5360,21 +5367,22 @@ static void decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_DISASSOCIATED_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ASSIGNMENT_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5392,21 +5400,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCESS_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5424,21 +5433,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_FOLDER_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_EVENT_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
-static void decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5456,21 +5466,22 @@ static void decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INFORMATION_NOT_AVAILABLE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_NAME_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5488,21 +5499,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_IPSUBNET_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
+/* Exception = IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5520,21 +5532,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNATURE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SUBSCRIBER_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
-static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5552,21 +5565,22 @@ static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INFORMATION_NOT_AVAILABLE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5584,21 +5598,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNING_ALGORITHM_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CRITERIA_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
-static void decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5616,27 +5631,29 @@ static void decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDRESS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SESSION_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
+/* Exception = IDL:org/csapi/TpCommonExceptions:1.0 */
-static void decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
/* Operation specific Variable declarations Begin */
+ gint32 s_octet4;
guint32 u_octet4;
gchar *seq = NULL;
@@ -5646,23 +5663,29 @@ static void decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, pa
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
- u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
+ s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation = %s",seq);
-
+ proto_tree_add_text(tree,tvb,*offset-4,4,"TpCommonExceptions_ExceptionType = %i",s_octet4);
}
+ u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
+ if (tree) {
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCommonExceptions_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
+ }
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5680,21 +5703,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNASSIGNED_ALIAS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CURRENCY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5712,21 +5736,22 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MESSAGE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AMOUNT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
+/* Exception = IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5744,21 +5769,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_PROFILE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_APPLICATION_NOT_ACTIVATED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5776,21 +5802,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_TAG_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDRESS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
+/* Exception = IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5808,21 +5835,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CLIENT_APP_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
+/* Exception = IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
-static void decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5840,21 +5868,22 @@ static void decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_VIOLATION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_VERSION:1.0 */
-static void decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5872,21 +5901,22 @@ static void decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SESSION_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VERSION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5904,21 +5934,22 @@ static void decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_NETWORK_STATE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
-static void decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5936,21 +5967,22 @@ static void decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_ACCESS_DENIED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
+/* Exception = IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
-static void decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -5968,21 +6000,22 @@ static void decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MISSING_MANDATORY_PROPERTY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_ACCESS_DENIED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6000,21 +6033,22 @@ static void decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IDENTITY_EXISTS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_DENIED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
+/* Exception = IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
-static void decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6032,21 +6066,22 @@ static void decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_NOT_ENABLED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
-static void decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6064,21 +6099,22 @@ static void decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AMOUNT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
-static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6096,21 +6132,22 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AGREEMENT_TEXT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6128,21 +6165,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_TOKEN_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6160,21 +6198,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATES_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNATURE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
-static void decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6192,21 +6231,22 @@ static void decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNING_ALGORITHM_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6224,21 +6264,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MESSAGE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_DOMAIN_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6256,21 +6297,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACTIVITY_TEST_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_PROPERTY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6288,21 +6330,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCESS_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
+/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
-static void decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6320,21 +6363,22 @@ static void decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SUBSCRIBER_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
+/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6352,21 +6396,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAP_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
-static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6384,21 +6429,22 @@ static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MISSING_MANDATORY_PROPERTY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
+/* Exception = IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6416,21 +6462,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DSCODEPOINT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_DUPLICATE_PROPERTY_NAME_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
+/* Exception = IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6448,21 +6495,22 @@ static void decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NO_CAPABILITY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PROPERTY_TYPE_MISMATCH_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
-static void decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6480,21 +6528,22 @@ static void decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_NOT_ENABLED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CLIENT_APP_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6512,21 +6561,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_CANNOT_CANCEL_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AUTH_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
-static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6544,21 +6594,22 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6576,21 +6627,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PROPERTY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_PROFILE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6608,21 +6660,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_MEMBER_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
-static void decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6640,21 +6693,22 @@ static void decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REQUEST_NUMBER_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACTIVITY_TEST_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6672,21 +6726,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VALUE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
+/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
-static void decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6704,21 +6759,22 @@ static void decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORIZED_APPLICATION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
+/* Exception = IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
-static void decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6736,21 +6792,22 @@ static void decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6768,21 +6825,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDITION_TO_SAG_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
-static void decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6800,21 +6858,22 @@ static void decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_COLLECTION_CRITERIA_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6832,21 +6891,22 @@ static void decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6864,21 +6924,22 @@ static void decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
+/* Exception = IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6896,21 +6957,22 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_FOLDER_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ID_NOT_FOUND_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
+/* Exception = IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6928,21 +6990,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SITE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
+/* Exception = IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6960,21 +7023,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_RANGE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
+/* Exception = IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -6992,21 +7056,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_COLLECTION_CRITERIA_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
+/* Exception = IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7024,21 +7089,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_GROUP_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7056,21 +7122,22 @@ static void decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
+/* Exception = IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7088,21 +7155,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PART_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REPORTING_INTERVAL_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
+/* Exception = IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
-static void decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7120,21 +7188,22 @@ static void decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
+/* Exception = IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7152,21 +7221,22 @@ static void decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_INVALID_CREDENTIAL_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TERMINAL_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
-static void decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7184,21 +7254,22 @@ static void decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_NAME_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_FOLDER_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7216,21 +7287,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7248,21 +7320,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VPRPID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7280,21 +7353,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_TOKEN_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MAILBOX_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7312,21 +7386,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AUTH_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MESSAGE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7344,21 +7419,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_AGENT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7376,21 +7452,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
-static void decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7408,21 +7485,22 @@ static void decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PROPERTY_TYPE_MISMATCH_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
-static void decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7440,21 +7518,22 @@ static void decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NAME_SPACE_ERROR_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7472,21 +7551,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_LOCKED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
-static void decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7504,21 +7584,22 @@ static void decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VOLUME_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7536,21 +7617,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_COMBINATION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_PROPERTY_NOT_SET_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7568,21 +7650,22 @@ static void decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_FOLDER_IS_OPEN_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7600,21 +7683,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRN_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_OPEN_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
-static void decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7632,21 +7716,22 @@ static void decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CRITERIA_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7664,21 +7749,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SLA_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7696,21 +7782,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SLA_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_STATUS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7728,21 +7815,22 @@ static void decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_ASSOCIATED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_QOS_INFO_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7760,21 +7848,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VALIDITY_INFO_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
-static void decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7792,21 +7881,22 @@ static void decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_DUPLICATE_PROPERTY_NAME_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_PIPEQOSINFO_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7824,21 +7914,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DSCODEPOINT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7856,21 +7947,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_PIPEQOSINFO_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VPRPID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7888,21 +7980,22 @@ static void decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_MEMBER_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_REF_VALUE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7920,21 +8013,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_INTERFACE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_USER:1.0 */
+/* Exception = IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
-static void decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7952,21 +8046,22 @@ static void decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_USER_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_CANT_DELETE_VPRP_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -7984,21 +8079,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_REF_VALUE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATES_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
-static void decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8016,21 +8112,22 @@ static void decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_EVENT_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_MENU_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
-static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8048,21 +8145,22 @@ static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8080,21 +8178,22 @@ static void decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
-static void decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8112,21 +8211,22 @@ static void decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DESCRIPTION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8144,21 +8244,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ALIAS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SLA_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8176,21 +8277,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_TAG_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8208,21 +8310,22 @@ static void decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IS_CYCLIC_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VALUE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8240,21 +8343,22 @@ static void decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ATTRIBUTE_EXISTS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_COMBINATION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8272,21 +8376,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITES_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_VERSION:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
-static void decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8304,21 +8409,22 @@ static void decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VERSION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRN_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8336,21 +8442,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_MENU_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SITE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8368,21 +8475,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAPS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8400,21 +8508,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_STATUS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAPS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8432,21 +8541,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_LOCATION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
-static void decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8464,21 +8574,22 @@ static void decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_APPLICATION_NOT_ACTIVATED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8496,21 +8607,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_PROPERTY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_IPSUBNET_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8528,21 +8640,22 @@ static void decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_PROPERTY_NOT_SET_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAP_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8560,21 +8673,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
+/* Exception = IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
-static void decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8592,21 +8706,22 @@ static void decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_DENIED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORIZED_APPLICATION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_USER:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8624,21 +8739,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_USER_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
-static void decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8656,21 +8772,22 @@ static void decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCOUNT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
-static void decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8688,21 +8805,22 @@ static void decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCOUNT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REQUEST_NUMBER_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
-static void decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8720,21 +8838,22 @@ static void decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VOLUME_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
+/* Exception = IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8752,21 +8871,22 @@ static void decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_FOLDER_IS_OPEN_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_VIOLATION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8784,21 +8904,22 @@ static void decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_AGENT_EXISTS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SYNTAX_ERROR_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
+/* Exception = IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8816,21 +8937,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DESCRIPTION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NAME_SPACE_ERROR_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
+/* Exception = IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
-static void decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8848,21 +8970,22 @@ static void decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ASSIGNMENT_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_TRANSACTION_IN_PROCESS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
+/* Exception = IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
-static void decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8880,21 +9003,22 @@ static void decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CURRENCY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRANSACTION_IN_PROCESS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8912,21 +9036,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_HEADER_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
-static void decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8944,21 +9069,22 @@ static void decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ID_NOT_FOUND_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_MEMBER_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -8976,21 +9102,22 @@ static void decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_EXISTS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_IDENTITY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
-static void decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9008,21 +9135,22 @@ static void decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_NETWORK_STATE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_GROUP_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9040,21 +9168,22 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_CAPABILITY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9072,21 +9201,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_DOMAIN_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
-static void decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9104,21 +9234,22 @@ static void decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_CANT_DELETE_VPRP_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9136,21 +9267,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TIME_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9168,21 +9300,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_IDENTITY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ALIAS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9200,21 +9333,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_AGENT_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
-static void decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9232,21 +9366,22 @@ static void decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNASSIGNED_ALIAS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
-static void decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9264,21 +9399,22 @@ static void decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TERMINAL_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_EXISTS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9296,21 +9432,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_LOCATION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_ASSOCIATED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9328,21 +9465,22 @@ static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_OPEN_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_REGISTERED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9360,21 +9498,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_QOS_INFO_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_MEMBER_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9392,21 +9531,22 @@ static void decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_REGISTERED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NO_CAPABILITY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
-static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9424,21 +9564,22 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_MEMBER_EXISTS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
-static void decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9456,21 +9597,22 @@ static void decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_RANGE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IS_CYCLIC_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9488,21 +9630,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_TYPE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IDENTITY_EXISTS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9520,21 +9663,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_INTERFACE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_DISASSOCIATED_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9552,21 +9696,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MAILBOX_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ATTRIBUTE_EXISTS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9584,21 +9729,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_CAPABILITY_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9616,21 +9762,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_EXISTS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9648,21 +9795,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VALIDITY_INFO_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_AGENT_EXISTS_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
-static void decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9680,21 +9828,22 @@ static void decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SYNTAX_ERROR_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
-static void decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9712,21 +9861,22 @@ static void decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REPORTING_INTERVAL_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_INVALID_CREDENTIAL_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9744,21 +9894,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9776,21 +9927,22 @@ static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_LOCKED_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MAILBOX_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
-static void decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9808,21 +9960,22 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SLA_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9840,21 +9993,22 @@ static void decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_MEMBER_EXISTS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9872,21 +10026,22 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MAILBOX_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_FOLDER_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9904,21 +10059,22 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MESSAGE_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
-static void decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9936,21 +10092,22 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_VALIDITY_TIME_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PART_ID_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
-static void decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -9968,28 +10125,28 @@ static void decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_TRANSACTION_IN_PROCESS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/TpCommonExceptions:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
-static void decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
/* Operation specific Variable declarations Begin */
- gint32 s_octet4;
guint32 u_octet4;
gchar *seq = NULL;
@@ -9999,28 +10156,24 @@ static void decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_inf
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
- s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
- if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4,4,"TpCommonExceptions_ExceptionType = %i",s_octet4);
- }
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCommonExceptions_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10038,21 +10191,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDITION_TO_SAG_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PROPERTY_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
-static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10070,21 +10224,22 @@ static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_ID_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TIME_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
-static void decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10102,21 +10257,22 @@ static void decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AGREEMENT_TEXT_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_VALIDITY_TIME_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
-static void decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10134,21 +10290,22 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITES_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
-static void decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10166,21 +10323,22 @@ static void decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRANSACTION_IN_PROCESS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
-static void decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10198,21 +10356,22 @@ static void decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_CANNOT_CANCEL_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
}
-/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
-static void decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -10230,12 +10389,13 @@ static void decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_EXISTS_ExtraInformation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_HEADER_ExtraInformation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -10260,1073 +10420,1073 @@ static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
return FALSE;
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_ASSIGNMENT_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
+ decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_ACCESS_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
+ decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_EVENT_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
+ decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INFORMATION_NOT_AVAILABLE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_INTERFACE_NAME) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
+ decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_IPSUBNET) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_INTERFACE_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
+ decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SIGNATURE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_UNKNOWN_SUBSCRIBER) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
+ decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INFORMATION_NOT_AVAILABLE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
+ decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_CRITERIA) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
+ decode_ex_org_csapi_P_INVALID_CRITERIA(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_ADDRESS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_SESSION_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_ADDRESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
+ decode_ex_org_csapi_P_INVALID_SESSION_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_TpCommonExceptions) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
+ decode_ex_org_csapi_TpCommonExceptions(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/TpCommonExceptions:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_CURRENCY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
+ decode_ex_org_csapi_P_INVALID_CURRENCY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_AMOUNT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
+ decode_ex_org_csapi_P_INVALID_AMOUNT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_APPLICATION_NOT_ACTIVATED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
+ decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_TAG) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_ADDRESS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
+ decode_ex_org_csapi_P_INVALID_ADDRESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_CLIENT_APP_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
+ decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_ACCESS_VIOLATION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
+ decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_SESSION_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_VERSION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_SESSION_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
+ decode_ex_org_csapi_P_INVALID_VERSION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_VERSION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_NETWORK_STATE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
+ decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_SERVICE_ACCESS_DENIED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_SERVICE_ACCESS_DENIED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
+ decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_IDENTITY_EXISTS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_ACCESS_DENIED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
+ decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_SERVICE_NOT_ENABLED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
+ decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_AMOUNT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_AMOUNT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
+ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_AGREEMENT_TEXT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_TOKEN) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATES) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SIGNATURE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_DOMAIN_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_PROPERTY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SAG_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_ACCESS_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_UNKNOWN_SUBSCRIBER) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
+ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SAP) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
+ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
+ decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_DSCODEPOINT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
+ decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_NO_CAPABILITY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
+ decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_SERVICE_NOT_ENABLED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_CLIENT_APP_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_CANNOT_CANCEL) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_AUTH_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SAG_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_PROPERTY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_MEMBER) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_REQUEST_NUMBER) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_VALUE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
+ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_am_P_UNAUTHORIZED_APPLICATION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_UNKNOWN_SERVICE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
+ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
+ decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_ADDITION_TO_SAG) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
+ decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
+ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
+ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_FOLDER_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_ID_NOT_FOUND) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
+ decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_SITE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_ILLEGAL_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
+ decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VPRP_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_ILLEGAL_RANGE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
+ decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
+ decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_GROUP) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
+ decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
+ decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_PART_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_INVALID_REPORTING_INTERVAL) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
+ decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
+ decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_INVALID_CREDENTIAL) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_termcap_P_INVALID_TERMINAL_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
+ decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_INTERFACE_NAME) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_FOLDER_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VPRP) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_VPRPID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_TOKEN) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_MAILBOX) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_AUTH_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_AGENT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_NAME_SPACE_ERROR) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_MAILBOX_LOCKED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_VOLUME) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_COMBINATION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_PROPERTY_NOT_SET) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_FOLDER_IS_OPEN) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VPRN) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_MAILBOX_OPEN) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
+ decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_CRITERIA) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VPRP_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_CRITERIA(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SLA_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SLA_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_STATUS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_TYPE_ASSOCIATED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_QOS_INFO) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_DSCODEPOINT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_VPRPID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_NOT_MEMBER) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_REF_VALUE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_INTERFACE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_USER) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_CANT_DELETE_VPRP) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cs_P_INVALID_USER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_USER:1.0 */
+ decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_REF_VALUE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATES) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_EVENT_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_MENU) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_DESCRIPTION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ALIAS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_SLA_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_TAG) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_IS_CYCLIC) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_VALUE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_COMBINATION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITES) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_VERSION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VPRN) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_VERSION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_VERSION:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_MENU) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_SITE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
+ decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SAPS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_STATUS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SAPS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITE_LOCATION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_APPLICATION_NOT_ACTIVATED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_PROPERTY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_IPSUBNET) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_PROPERTY_NOT_SET) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SAP) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VPRP) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
+ decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_ACCESS_DENIED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_am_P_UNAUTHORIZED_APPLICATION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
+ decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_USER) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
+ decode_ex_org_csapi_cs_P_INVALID_USER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_USER:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_ACCOUNT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
+ decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_ACCOUNT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_REQUEST_NUMBER) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
+ decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_ILLEGAL_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_cs_P_INVALID_VOLUME) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
+ decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_FOLDER_IS_OPEN) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_ACCESS_VIOLATION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
+ decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_AGENT_EXISTS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_SYNTAX_ERROR) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
+ decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_DESCRIPTION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_NAME_SPACE_ERROR) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
+ decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_ASSIGNMENT_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
+ decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_CURRENCY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_TRANSACTION_IN_PROCESS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_CURRENCY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
+ decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_HEADER) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_ID_NOT_FOUND) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_MEMBER) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_TYPE_EXISTS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_NETWORK_STATE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_GROUP) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_DOMAIN_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_CANT_DELETE_VPRP) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ALIAS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_AGENT) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_INTERFACE_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_termcap_P_INVALID_TERMINAL_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_TYPE_EXISTS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITE_LOCATION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_TYPE_ASSOCIATED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_MAILBOX_OPEN) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_NOT_REGISTERED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_QOS_INFO) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_NOT_MEMBER) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_NOT_REGISTERED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_NO_CAPABILITY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_MEMBER_EXISTS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_ui_P_ILLEGAL_RANGE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_IS_CYCLIC) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_TYPE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_IDENTITY_EXISTS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_INTERFACE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_MAILBOX) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_ALIAS_EXISTS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_AGENT_EXISTS) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_SYNTAX_ERROR) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mm_P_INVALID_REPORTING_INTERVAL) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_INVALID_CREDENTIAL) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
+ decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_MAILBOX_LOCKED) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_MAILBOX) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_ILLEGAL_SLA_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_MEMBER_EXISTS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_INVALID_MAILBOX) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_PART_ID) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_TpCommonExceptions) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_TpCommonExceptions(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/TpCommonExceptions:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_ADDITION_TO_SAG) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_PROPERTY) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_ILLEGAL_SERVICE_ID) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_fw_P_INVALID_AGREEMENT_TEXT) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_cm_P_UNKNOWN_SITES) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_policy_P_TRANSACTION_IN_PROCESS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_CANNOT_CANCEL) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_org_csapi_pam_P_PAM_ALIAS_EXISTS) == 0) {
+ if (strcmp(header->exception_id, user_exception_org_csapi_mmm_P_MMM_INVALID_HEADER) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
+ decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
return TRUE;
}
@@ -11533,12 +11693,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -11630,23 +11791,25 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"frameworkVersion = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"frameworkVersion[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -11729,12 +11892,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_re
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"accessType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"accessType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -11817,23 +11981,25 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_term
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -11925,12 +12091,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12007,12 +12174,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12199,12 +12367,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpInterfaceNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpInterfaceNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12272,12 +12441,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInt
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12355,12 +12525,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSign
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithmCaps = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithmCaps[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12374,12 +12545,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSign
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSigningAlgorithm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSigningAlgorithm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12448,12 +12620,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12548,23 +12721,25 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquish
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -12994,12 +13169,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"encryptionCaps = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"encryptionCaps[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -13013,12 +13189,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEncryptionCapability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEncryptionCapability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -13323,12 +13500,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authMechanismList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authMechanismList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -13342,12 +13520,13 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAuthMechanism = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAuthMechanism[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -13830,12 +14009,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14143,12 +14323,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUn
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14250,12 +14431,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14503,12 +14685,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14588,12 +14771,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUn
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14750,12 +14934,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14863,12 +15048,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -14980,12 +15166,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -16193,12 +16380,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -16463,12 +16651,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -16557,12 +16746,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -16651,12 +16841,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNot
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -16745,12 +16936,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -16845,12 +17037,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17118,12 +17311,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTime
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"systemDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"systemDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17137,12 +17331,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTime
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17208,12 +17403,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQue
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17227,12 +17423,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQue
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17304,12 +17501,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activity
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"svcID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"svcID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17393,12 +17591,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17476,12 +17675,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnava
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17577,12 +17777,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -17738,12 +17939,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnava
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -18078,12 +18280,13 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -18938,12 +19141,13 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19011,12 +19215,13 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_desc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19104,12 +19309,13 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_disc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19313,34 +19519,37 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agreementText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agreementText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19431,23 +19640,25 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19539,34 +19750,37 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agreementText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agreementText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signingAlgorithm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19652,23 +19866,25 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminationText[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19760,12 +19976,13 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19779,12 +19996,13 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceToken = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceToken[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19850,12 +20068,13 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceToken[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -19950,12 +20169,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20100,12 +20320,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20183,23 +20404,25 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20277,23 +20500,25 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20474,12 +20699,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20547,12 +20773,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20637,12 +20864,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20663,12 +20891,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20753,12 +20982,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20903,12 +21133,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -20986,12 +21217,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -21091,12 +21323,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -21166,12 +21399,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -21192,12 +21426,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -21658,12 +21893,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -21759,12 +21995,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -21923,12 +22160,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22008,12 +22246,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22026,12 +22265,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22113,12 +22353,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22131,12 +22372,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22302,12 +22544,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22407,12 +22650,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22480,12 +22724,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22499,12 +22744,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagDescription = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagDescription[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22587,12 +22833,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22662,12 +22909,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22688,12 +22936,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22763,12 +23012,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientAppID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -22789,12 +23039,13 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23191,12 +23442,13 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23264,12 +23516,13 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_descri
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23357,12 +23610,13 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discov
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23565,12 +23819,13 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"application = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"application[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23594,12 +23849,13 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceInstanceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceInstanceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23676,12 +23932,13 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceInstance = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceInstance[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23761,12 +24018,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23798,12 +24056,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23869,12 +24128,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -23955,12 +24215,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -24038,12 +24299,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -24126,12 +24388,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -24213,12 +24476,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -24268,12 +24532,13 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -26134,12 +26399,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -26927,12 +27193,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -27600,12 +27867,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"activityTestResult[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -28010,12 +28278,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -28110,12 +28379,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"serviceIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -28688,12 +28958,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuer
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"systemDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"systemDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -28707,12 +28978,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuer
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -28778,12 +29050,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"clientDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -28797,12 +29070,13 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDateAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -30380,12 +30654,13 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"digits = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"digits[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -35374,12 +35649,13 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"propertyNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"propertyNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -39214,12 +39490,13 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"startTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"startTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -40684,12 +40961,13 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"collectedInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"collectedInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -42061,12 +42339,13 @@ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"language = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"language[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -42190,12 +42469,13 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"language = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"language[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -42388,12 +42668,13 @@ static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"origin = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"origin[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -42485,12 +42766,13 @@ static void decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -49423,12 +49705,13 @@ static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminalIdentity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"terminalIdentity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -51927,12 +52210,13 @@ static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authenticationInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authenticationInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53012,12 +53296,13 @@ static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53106,12 +53391,13 @@ static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53198,12 +53484,13 @@ static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authenticationInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authenticationInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53287,12 +53574,13 @@ static void decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53379,12 +53667,13 @@ static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53494,12 +53783,13 @@ static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53606,12 +53896,13 @@ static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53695,12 +53986,13 @@ static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -53714,12 +54006,13 @@ static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessage = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessage[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -54073,12 +54366,13 @@ static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"message = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"message[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -54180,12 +54474,13 @@ static void decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -54349,12 +54644,13 @@ static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -54440,12 +54736,13 @@ static void decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -54519,12 +54816,13 @@ static void decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -54980,12 +55278,13 @@ static void decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55053,12 +55352,13 @@ static void decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"vPrPID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"vPrPID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55207,12 +55507,13 @@ static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"vPrPID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"vPrPID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55290,12 +55591,13 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"templateType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"templateType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55389,12 +55691,13 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55608,12 +55911,13 @@ static void decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55687,12 +55991,13 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -55758,12 +56063,13 @@ static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"slaID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"slaID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -56395,12 +56701,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -56537,12 +56844,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"siteID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"siteID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -56636,12 +56944,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -56717,12 +57026,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -56796,12 +57106,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -56875,12 +57186,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -57021,12 +57333,13 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sapID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sapID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -64061,12 +64374,13 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sessionDescription = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sessionDescription[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -64181,12 +64495,13 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sessionDescription = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sessionDescription[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -64571,23 +64886,25 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -64700,23 +65017,25 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -64817,12 +65136,13 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPoli
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -64907,23 +65227,25 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65022,12 +65344,13 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotific
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65043,12 +65366,13 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotific
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"events = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"events[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65144,12 +65468,13 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotifi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"events = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"events[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65229,12 +65554,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65407,12 +65733,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65624,12 +65951,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65766,12 +66094,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createReposi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65848,12 +66177,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -65930,12 +66260,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeReposi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -66156,12 +66487,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -66262,12 +66594,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -66344,12 +66677,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -66570,12 +66904,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -66676,12 +67011,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -66758,12 +67094,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67122,12 +67459,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67228,12 +67566,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67310,12 +67649,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67536,12 +67876,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67642,12 +67983,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67724,12 +68066,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"actionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -67948,12 +68291,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"conditionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -68595,12 +68939,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -68677,12 +69022,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -68759,12 +69105,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69020,12 +69367,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDom
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69093,12 +69441,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createRepositor
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69175,12 +69524,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69257,12 +69607,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepositor
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"repositoryName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69831,12 +70182,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69913,12 +70265,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -69995,12 +70348,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -70219,12 +70573,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -70301,12 +70656,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -70383,12 +70739,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71313,12 +71670,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVaria
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"inputVariables = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"inputVariables[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71407,12 +71765,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVari
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"outputVariables = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"outputVariables[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71509,12 +71868,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVaria
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71599,12 +71959,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVari
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71681,12 +72042,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71775,12 +72137,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRole
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"roleNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"roleNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71877,12 +72240,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -71967,12 +72331,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRole
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringSet[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72178,12 +72543,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72260,12 +72626,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72342,12 +72709,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"domainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72566,12 +72934,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72648,12 +73017,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72730,12 +73100,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"groupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -72954,12 +73325,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73036,12 +73408,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73118,12 +73491,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ruleName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73346,12 +73720,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73364,12 +73739,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"requiredAttributes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"requiredAttributes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73384,12 +73760,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"optionalAttributes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"optionalAttributes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73468,12 +73845,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73550,12 +73928,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"eventDefinitionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73774,12 +74153,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73859,12 +74239,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -73956,12 +74337,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74180,23 +74562,25 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74283,23 +74667,25 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74380,23 +74766,25 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74479,23 +74867,25 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74572,23 +74962,25 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74671,23 +75063,25 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variablSetName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variablSetName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"variableName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74765,12 +75159,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74847,12 +75242,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -74929,12 +75325,13 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"signatureName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75158,12 +75555,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIden
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75176,12 +75574,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIden
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75278,12 +75677,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIden
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75378,12 +75778,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75481,12 +75882,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGrou
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75499,12 +75901,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGrou
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75601,12 +76004,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGrou
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75701,23 +76105,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"group = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"group[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"member = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"member[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75812,23 +76218,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFrom
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"group = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"group[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75925,12 +76333,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMember
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -75965,12 +76374,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMember
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76041,12 +76451,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIde
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76144,12 +76555,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupM
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76184,12 +76596,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupM
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76260,23 +76673,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"alias = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"alias[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76371,23 +76786,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAlia
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"alias = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"alias[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76484,12 +76901,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliase
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76524,12 +76942,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliase
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76600,12 +77019,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"alias = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"alias[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76633,12 +77053,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76709,12 +77130,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76727,12 +77149,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76831,12 +77254,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassocia
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76849,12 +77273,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassocia
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76953,12 +77378,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesO
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -76993,12 +77419,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesO
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77069,23 +77496,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77185,23 +77614,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77214,12 +77645,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77332,23 +77764,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77463,12 +77897,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77481,12 +77916,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77583,12 +78019,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77683,12 +78120,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77786,12 +78224,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabil
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77804,12 +78243,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabil
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77908,12 +78348,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -77926,12 +78367,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78030,12 +78472,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78070,12 +78513,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78148,12 +78592,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78188,12 +78633,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78264,23 +78710,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78378,12 +78826,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateType
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78396,12 +78845,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateType
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78500,12 +78950,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78518,12 +78969,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentTypes = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentTypes[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78622,12 +79074,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAg
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78662,12 +79115,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAg
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78738,23 +79192,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78854,23 +79310,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttri
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -78883,12 +79341,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttri
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79001,23 +79460,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttri
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79130,23 +79591,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79241,23 +79704,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79354,12 +79819,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79394,12 +79860,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79472,12 +79939,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociate
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79512,12 +79980,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociate
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79590,23 +80059,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79641,12 +80112,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMFQNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79719,12 +80191,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79759,12 +80232,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilit
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -79835,23 +80309,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCap
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80043,12 +80519,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80143,12 +80620,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIde
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80279,12 +80757,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAl
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80357,12 +80836,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80375,12 +80855,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80477,12 +80958,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80608,12 +81090,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80686,12 +81169,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIde
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80704,12 +81188,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIde
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80808,12 +81293,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_remove
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80826,12 +81312,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_remove
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80930,12 +81417,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -80970,12 +81458,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81142,12 +81631,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81242,12 +81732,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentA
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81378,12 +81869,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAg
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81456,12 +81948,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81474,12 +81967,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81576,12 +82070,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81707,12 +82202,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81785,12 +82281,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81803,12 +82300,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentT
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81907,12 +82405,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAge
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -81925,12 +82424,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAge
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82029,12 +82529,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"typeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82069,12 +82570,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82241,12 +82743,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82341,12 +82844,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapab
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82477,12 +82981,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllC
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82555,12 +83060,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82573,12 +83079,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82675,12 +83182,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82806,12 +83314,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82884,12 +83393,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapab
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -82902,12 +83412,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapab
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83006,12 +83517,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83024,12 +83536,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83128,12 +83641,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83168,12 +83682,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStringList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83246,12 +83761,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83264,12 +83780,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83368,12 +83885,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassign
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83386,12 +83904,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassign
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83490,12 +84009,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83530,12 +84050,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCapabilityList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83706,12 +84227,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInt
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83791,12 +84313,13 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccess
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -83896,23 +84419,25 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccess
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84018,23 +84543,25 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84149,23 +84676,25 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84178,12 +84707,13 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84287,23 +84817,25 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresenc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84316,12 +84848,13 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresenc
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84434,23 +84967,25 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84565,23 +85100,25 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84696,23 +85233,25 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84725,12 +85264,13 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84832,23 +85372,25 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84861,12 +85403,13 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84970,23 +85513,25 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -84999,12 +85544,13 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbu
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85119,23 +85665,25 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85148,12 +85696,13 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85268,12 +85817,13 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85295,12 +85845,13 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85415,12 +85966,13 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85442,12 +85994,13 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"attributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85558,12 +86111,13 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85672,12 +86226,13 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85692,12 +86247,13 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85901,12 +86457,13 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainI
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -85986,12 +86543,13 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAcce
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -86091,23 +86649,25 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAcce
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -86211,12 +86771,13 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activat
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -86311,12 +86872,13 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactiv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -86411,12 +86973,13 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -87284,12 +87847,13 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"interfaceName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -87369,12 +87933,13 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -87474,23 +88039,25 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"operation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -87594,12 +88161,13 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -87694,12 +88262,13 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -87794,12 +88363,13 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -88465,23 +89035,25 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"mailboxID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"mailboxID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authenticationInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"authenticationInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89167,12 +89739,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89267,12 +89840,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89363,12 +89937,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89381,12 +89956,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89477,12 +90053,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89494,12 +90071,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89675,12 +90253,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -89856,12 +90435,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90037,12 +90617,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90131,12 +90712,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90231,12 +90813,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90412,12 +90995,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90593,12 +91177,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90774,12 +91359,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -90990,12 +91576,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -91191,12 +91778,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -91392,12 +91980,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -91593,12 +92182,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -91690,23 +92280,25 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"contentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"contentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"contentTransferEncoding = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"contentTransferEncoding[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -91815,12 +92407,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92013,12 +92606,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92210,12 +92804,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92324,12 +92919,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92438,12 +93034,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92552,12 +93149,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92670,12 +93268,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92770,12 +93369,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -92870,12 +93470,13 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93035,12 +93636,13 @@ static void decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93125,12 +93727,13 @@ static void decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93215,12 +93818,13 @@ static void decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93305,23 +93909,25 @@ static void decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sourceFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sourceFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"destinationFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"destinationFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93406,23 +94012,25 @@ static void decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sourceFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"sourceFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"destinationFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"destinationFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93510,12 +94118,13 @@ static void decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93614,34 +94223,37 @@ static void decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"fromFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"fromFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"toFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"toFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93726,34 +94338,37 @@ static void decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"fromFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"fromFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"toFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"toFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93838,23 +94453,25 @@ static void decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"fromFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"fromFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -93940,12 +94557,13 @@ static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94044,23 +94662,25 @@ static void decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94152,23 +94772,25 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94181,12 +94803,13 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"partIDs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"partIDs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94273,23 +94896,25 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94374,23 +94999,25 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94475,23 +95102,25 @@ static void decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94653,12 +95282,13 @@ static void decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"folderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94743,12 +95373,13 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -94835,12 +95466,13 @@ static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"messageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -95035,12 +95667,13 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -95216,12 +95849,13 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -95417,12 +96051,13 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"errorDetails[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -95525,12 +96160,13 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tv
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"deliveryReportInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"deliveryReportInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -95752,12 +96388,13 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"deliveryType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"deliveryType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96124,23 +96761,25 @@ static void decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddress_AddrString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddress_AddrString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddress_Name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddress_Name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96158,12 +96797,13 @@ static void decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddress_SubAddressString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddress_SubAddressString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96196,34 +96836,37 @@ static void decode_org_csapi_TpAddressRange_st(tvbuff_t *tvb _U_, packet_info *p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddressRange_AddrString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddressRange_AddrString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddressRange_Name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddressRange_Name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddressRange_SubAddressString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddressRange_SubAddressString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96386,12 +97029,13 @@ static void decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAoCInfo_Currency = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAoCInfo_Currency[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96418,23 +97062,25 @@ static void decode_org_csapi_TpTimeInterval_st(tvbuff_t *tvb _U_, packet_info *p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTimeInterval_StartTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTimeInterval_StartTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTimeInterval_StopTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTimeInterval_StopTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96461,12 +97107,13 @@ static void decode_org_csapi_TpStructuredAttributeValue_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStructuredAttributeValue_Type = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStructuredAttributeValue_Type[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96496,12 +97143,13 @@ static void decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAttribute_AttributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAttribute_AttributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96632,12 +97280,13 @@ static void decode_org_csapi_fw_TpLoadPolicy_st(tvbuff_t *tvb _U_, packet_info *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLoadPolicy_LoadPolicy = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLoadPolicy_LoadPolicy[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96756,23 +97405,25 @@ static void decode_org_csapi_fw_TpProperty_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpProperty_PropertyName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpProperty_PropertyName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpProperty_PropertyValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpProperty_PropertyValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96802,12 +97453,13 @@ static void decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppDescription_ClientAppID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppDescription_ClientAppID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96864,12 +97516,13 @@ static void decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEntOp_EntOpID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEntOp_EntOpID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96914,23 +97567,25 @@ static void decode_org_csapi_fw_TpSag_st(tvbuff_t *tvb _U_, packet_info *pinfo _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSag_SagID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSag_SagID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSag_SagDescription = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSag_SagDescription[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96959,12 +97614,13 @@ static void decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProperty_ServicePropertyName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProperty_ServicePropertyName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -96977,12 +97633,13 @@ static void decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProperty_ServicePropertyValueList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProperty_ServicePropertyValueList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97013,12 +97670,13 @@ static void decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceDescription_ServiceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceDescription_ServiceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97063,12 +97721,13 @@ static void decode_org_csapi_fw_TpService_st(tvbuff_t *tvb _U_, packet_info *pin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpService_ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpService_ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97107,45 +97766,49 @@ static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceStartDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceStartDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceEndDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceEndDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97174,12 +97837,13 @@ static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97206,12 +97870,13 @@ static void decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeProperty_ServicePropertyName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeProperty_ServicePropertyName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97223,12 +97888,13 @@ static void decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeProperty_ServicePropertyTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeProperty_ServicePropertyTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97285,12 +97951,13 @@ static void decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeDescription_ServiceTypeNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeDescription_ServiceTypeNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97365,56 +98032,61 @@ static void decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_PersonName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_PersonName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_PostalAddress = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_PostalAddress[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_TelephoneNumber = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_TelephoneNumber[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_Email = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_Email[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_HomePage = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_HomePage[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97480,45 +98152,49 @@ static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceStartDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceStartDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceEndDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceEndDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContractDescription_ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97577,12 +98253,13 @@ static void decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLoadStatistic_TimeStamp = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLoadStatistic_TimeStamp[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97618,12 +98295,13 @@ static void decode_org_csapi_fw_TpServiceContract_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContract_ServiceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContract_ServiceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97659,12 +98337,13 @@ static void decode_org_csapi_fw_TpServiceProfile_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfile_ServiceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfile_ServiceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97731,23 +98410,25 @@ static void decode_org_csapi_fw_TpSagProfilePair_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagProfilePair_Sag = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagProfilePair_Sag[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagProfilePair_ServiceProfile = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagProfilePair_ServiceProfile[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97774,12 +98455,13 @@ static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddSagMembersConflict_ClientApplication = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddSagMembersConflict_ClientApplication[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97803,12 +98485,13 @@ static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddSagMembersConflict_Service = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddSagMembersConflict_Service[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97835,12 +98518,13 @@ static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAssignSagToServiceProfileConflict_ClientApplication = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAssignSagToServiceProfileConflict_ClientApplication[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97855,12 +98539,13 @@ static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAssignSagToServiceProfileConflict_Service = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAssignSagToServiceProfileConflict_Service[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97889,12 +98574,13 @@ static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97906,12 +98592,13 @@ static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyTypeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyTypeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97924,12 +98611,13 @@ static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyValueList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyValueList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -97961,34 +98649,37 @@ static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_ServiceType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_ServiceType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_CompatibleServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_CompatibleServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98009,12 +98700,13 @@ static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_MigrationDataAndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_MigrationDataAndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98059,45 +98751,49 @@ static void decode_org_csapi_fw_TpFwAgreementInfo_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ClientApplicationID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ClientApplicationID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ServiceContractID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ServiceContractID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ServiceProfileID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ServiceProfileID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98125,12 +98821,13 @@ static void decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIMessageCriteria_EndSequence = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIMessageCriteria_EndSequence[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98147,6 +98844,75 @@ static void decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet
}
+/* Struct = IDL:org/csapi/ui/TpUIEventInfo:1.0 */
+
+static void decode_org_csapi_ui_TpUIEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+
+ gboolean stream_is_big_endian; /* big endianess */
+
+
+ /* Operation specific Variable declarations Begin */
+
+ guint32 u_octet4;
+ gchar *seq = NULL;
+
+ /* Operation specific Variable declarations End */
+
+
+ stream_is_big_endian = is_big_endian(header); /* get stream endianess */
+
+
+ /* Begin struct "org_csapi_TpAddress" */
+
+
+
+ decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
+
+
+ /* End struct "org_csapi_TpAddress" */
+
+ /* Begin struct "org_csapi_TpAddress" */
+
+
+
+ decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
+
+
+ /* End struct "org_csapi_TpAddress" */
+
+ u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
+ if (tree) {
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventInfo_ServiceCode[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
+ }
+ g_free(seq); /* free buffer */
+ seq = NULL;
+
+
+ u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-4,4,"Enum value = %u (%s)",u_octet4,val_to_str(u_octet4,org_csapi_ui_TpUIEventInfoDataType,"Unknown Enum Value"));
+ }
+
+ u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
+ if (tree) {
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventInfo_DataString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
+ }
+ g_free(seq); /* free buffer */
+ seq = NULL;
+
+}
+
+
/* Struct = IDL:org/csapi/ui/TpUIEventCriteria:1.0 */
static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98185,12 +98951,13 @@ static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventCriteria_ServiceCode = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventCriteria_ServiceCode[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98272,12 +99039,13 @@ static void decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventNotificationInfo_ServiceCode = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventNotificationInfo_ServiceCode[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98324,23 +99092,25 @@ static void decode_org_csapi_ui_TpUIRecognitionProperty_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionProperty_PropertyName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionProperty_PropertyName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionProperty_PropertyValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionProperty_PropertyValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98369,12 +99139,13 @@ static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionCriteria_SpeakerID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionCriteria_SpeakerID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98398,12 +99169,13 @@ static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionCriteria_Grammar = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionCriteria_Grammar[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98441,12 +99213,13 @@ static void decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUICollectCriteria_EndSequence = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUICollectCriteria_EndSequence[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98498,12 +99271,13 @@ static void decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIWordOverride_Spelling = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIWordOverride_Spelling[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98515,12 +99289,13 @@ static void decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIWordOverride_PronounceAs = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIWordOverride_PronounceAs[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98573,12 +99348,13 @@ static void decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUISynthesisInfoData_TextData = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUISynthesisInfoData_TextData[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98623,12 +99399,13 @@ static void decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallError_ErrorTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallError_ErrorTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98708,45 +99485,49 @@ static void decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallInitiationStartTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallInitiationStartTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToResourceTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToResourceTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToDestinationTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToDestinationTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallEndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallEndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -98785,12 +99566,13 @@ static void decode_org_csapi_cc_TpCallServiceCode_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallServiceCode_ServiceCodeValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallServiceCode_ServiceCodeValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -99064,12 +99846,13 @@ static void decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallReport_CallEventTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallReport_CallEventTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -99286,45 +100069,49 @@ static void decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallInitiationStartTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallInitiationStartTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToResourceTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToResourceTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToDestinationTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallConnectedToDestinationTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallEndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallInfoReport_CallEndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -99676,12 +100463,13 @@ static void decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallEventInfo_CallEventTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallEventInfo_CallEventTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -99861,45 +100649,49 @@ static void decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegStartTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegStartTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegConnectedToResourceTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegConnectedToResourceTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegConnectedToAddressTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegConnectedToAddressTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegEndTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegInfoReport_CallLegEndTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -99959,23 +100751,25 @@ static void decode_org_csapi_cc_TpCallLegProperty_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegProperty_CallLegPropertyName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegProperty_CallLegPropertyName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegProperty_CallLegPropertyValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegProperty_CallLegPropertyValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -100472,23 +101266,25 @@ static void decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchCriteria_StartSearch = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchCriteria_StartSearch[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchCriteria_StopSearch = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchCriteria_StopSearch[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -100532,12 +101328,13 @@ static void decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchResult_ActualStartTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchResult_ActualStartTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -100886,12 +101683,13 @@ static void decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLocationRequest_RequestedLocationMethod = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLocationRequest_RequestedLocationMethod[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101080,23 +101878,25 @@ static void decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUlExtendedData_Timestamp = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUlExtendedData_Timestamp[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUlExtendedData_UsedLocationMethod = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUlExtendedData_UsedLocationMethod[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101287,12 +102087,13 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationCamel_Timestamp = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationCamel_Timestamp[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101331,12 +102132,13 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationCamel_CellIdOrLai = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationCamel_CellIdOrLai[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101383,12 +102185,13 @@ static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergencyRequest_NaEsrd = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergencyRequest_NaEsrd[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101399,12 +102202,13 @@ static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergencyRequest_NaEsrk = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergencyRequest_NaEsrk[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101415,12 +102219,13 @@ static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergencyRequest_Imei = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergencyRequest_Imei[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101483,12 +102288,13 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_NaEsrd = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_NaEsrd[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101499,12 +102305,13 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_NaEsrk = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_NaEsrk[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101515,12 +102322,13 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_Imei = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_Imei[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101566,23 +102374,25 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_Timestamp = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_Timestamp[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_UsedLocationMethod = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserLocationEmergency_UsedLocationMethod[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -101981,23 +102791,25 @@ static void decode_org_csapi_mm_TpUserInfo_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserInfo_UserName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserInfo_UserName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserInfo_Password = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserInfo_Password[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102024,23 +102836,25 @@ static void decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNetworkStatusIndicator_CountryCode = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNetworkStatusIndicator_CountryCode[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNetworkStatusIndicator_MobileNetworkCode = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNetworkStatusIndicator_MobileNetworkCode[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102079,12 +102893,13 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102126,23 +102941,25 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserIPAddress = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserIPAddress[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserMSISDN = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserMSISDN[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102157,23 +102974,25 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserConnectionID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserConnectionID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_AccessPointName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_AccessPointName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102246,12 +103065,13 @@ static void decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTerminalCapabilities_TerminalCapabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTerminalCapabilities_TerminalCapabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102289,12 +103109,13 @@ static void decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTerminalCapabilityScope_Scope = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTerminalCapabilityScope_Scope[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102365,23 +103186,25 @@ static void decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionChargePlan_Currency = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionChargePlan_Currency[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionChargePlan_AdditionalInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionChargePlan_AdditionalInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102408,12 +103231,13 @@ static void decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionError_ErrorTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionError_ErrorTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102597,12 +103421,13 @@ static void decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionReport_DataSessionEventTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionReport_DataSessionEventTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102778,23 +103603,25 @@ static void decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGMSNewMessageArrivedInfo_FolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGMSNewMessageArrivedInfo_FolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGMSNewMessageArrivedInfo_MessageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGMSNewMessageArrivedInfo_MessageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102835,12 +103662,13 @@ static void decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGMSNewMessageArrivedCriteria_AuthenticationInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGMSNewMessageArrivedCriteria_AuthenticationInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102948,23 +103776,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -102976,12 +103806,13 @@ static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103008,23 +103839,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103036,12 +103869,13 @@ static void decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103069,23 +103903,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagMonth_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagMonth_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagMonth_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagMonth_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103124,23 +103960,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagInt_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagInt_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagInt_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagInt_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103178,23 +104016,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagDir_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDir_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDir_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDir_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDir_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103234,23 +104074,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDayOfWeek_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDayOfWeek_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDayOfWeek_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDayOfWeek_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103288,23 +104130,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103316,12 +104160,13 @@ static void decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103591,12 +104436,13 @@ static void decode_org_csapi_cm_TpEndpoint_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEndpoint_id = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEndpoint_id[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103696,23 +104542,25 @@ static void decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagExcessLoadAction_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagExcessLoadAction_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagExcessLoadAction_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagExcessLoadAction_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -103970,23 +104818,25 @@ static void decode_org_csapi_cm_TpDsCodepoint_st(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDsCodepoint_match = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDsCodepoint_match[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDsCodepoint_mask = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDsCodepoint_mask[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104013,23 +104863,25 @@ static void decode_org_csapi_cm_TpIPSubnet_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpIPSubnet_subnetNumber = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpIPSubnet_subnetNumber[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpIPSubnet_subnetMask = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpIPSubnet_subnetMask[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104069,12 +104921,13 @@ static void decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceInfo_Currency = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceInfo_Currency[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104095,12 +104948,13 @@ static void decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceInfo_AdditionalInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceInfo_AdditionalInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104142,12 +104996,13 @@ static void decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpChargingEventInfo_ChargingEventTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpChargingEventInfo_ChargingEventTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104224,23 +105079,25 @@ static void decode_org_csapi_am_TpTransactionHistory_st(tvbuff_t *tvb _U_, packe
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTransactionHistory_TimeStamp = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTransactionHistory_TimeStamp[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTransactionHistory_AdditionalInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTransactionHistory_AdditionalInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104373,12 +105230,13 @@ static void decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceExpiryDate_ExpiryDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceExpiryDate_ExpiryDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104449,12 +105307,13 @@ static void decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMerchantAccountID_MerchantID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMerchantAccountID_MerchantID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104546,12 +105405,13 @@ static void decode_org_csapi_cs_TpChargingPrice_st(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpChargingPrice_Currency = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpChargingPrice_Currency[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104693,12 +105553,13 @@ static void decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpApplicationDescription_Text = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpApplicationDescription_Text[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104785,12 +105646,13 @@ static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyEvent_TimeGenerated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyEvent_TimeGenerated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104814,23 +105676,25 @@ static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyEvent_EventDefinitionName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyEvent_EventDefinitionName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyEvent_EventDomainName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyEvent_EventDomainName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104857,12 +105721,13 @@ static void decode_org_csapi_policy_TpPolicyNameValue_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyNameValue_Name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyNameValue_Name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104903,12 +105768,13 @@ static void decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyRecordType_Names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyRecordType_Names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -104994,12 +105860,13 @@ static void decode_org_csapi_policy_TpPolicyVar_st(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyVar_VarName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyVar_VarName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105101,23 +105968,25 @@ static void decode_org_csapi_pam_TpPAMAttributeDef_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttributeDef_Name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttributeDef_Name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttributeDef_Type = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttributeDef_Type[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105157,12 +106026,13 @@ static void decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttribute_AttributeName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttribute_AttributeName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105202,45 +106072,49 @@ static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_Name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_Name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_subscriberStatus = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_subscriberStatus[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_networkStatus = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_networkStatus[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_communicationMeans = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_communicationMeans[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105255,23 +106129,25 @@ static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_subscriberProvidedLocation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_subscriberProvidedLocation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_networkProvidedLocation = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_networkProvidedLocation[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105282,12 +106158,13 @@ static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_otherInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_otherInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105314,12 +106191,13 @@ static void decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAvailabilityProfile_PrivacyCode = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAvailabilityProfile_PrivacyCode[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105355,12 +106233,13 @@ static void decode_org_csapi_pam_TpPAMCommunicationContext_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCommunicationContext_CommunicationCapability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCommunicationContext_CommunicationCapability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105452,12 +106331,13 @@ static void decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAccessControlData_AllowList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAccessControlData_AllowList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105472,12 +106352,13 @@ static void decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAccessControlData_DenyList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAccessControlData_DenyList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105515,12 +106396,13 @@ static void decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMICEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMICEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105558,12 +106440,13 @@ static void decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMICNotificationData_Identities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMICNotificationData_Identities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105603,12 +106486,13 @@ static void decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIDEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIDEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105623,12 +106507,13 @@ static void decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIDEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIDEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105666,12 +106551,13 @@ static void decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIDNotificationData_Identities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIDNotificationData_Identities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105711,12 +106597,13 @@ static void decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMGMCEventData_GroupName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMGMCEventData_GroupName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105731,12 +106618,13 @@ static void decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMGMCEventData_GroupType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMGMCEventData_GroupType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105774,12 +106662,13 @@ static void decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMGMCNotificationData_Groups = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMGMCNotificationData_Groups[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105817,12 +106706,13 @@ static void decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACEventData_AgentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACEventData_AgentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105860,12 +106750,13 @@ static void decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACNotificationData_Agents = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACNotificationData_Agents[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105905,12 +106796,13 @@ static void decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMADEventData_AgentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMADEventData_AgentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105925,12 +106817,13 @@ static void decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMADEventData_AgentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMADEventData_AgentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -105968,12 +106861,13 @@ static void decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMADNotificationData_Agents = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMADNotificationData_Agents[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106017,12 +106911,13 @@ static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106037,12 +106932,13 @@ static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106057,12 +106953,13 @@ static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_AgentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_AgentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106077,12 +106974,13 @@ static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_AgentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAAEventData_AgentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106111,23 +107009,25 @@ static void decode_org_csapi_pam_TpPAMAANotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAANotificationData_Identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAANotificationData_Identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAANotificationData_Agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAANotificationData_Agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106169,12 +107069,13 @@ static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106189,12 +107090,13 @@ static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106209,12 +107111,13 @@ static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_AgentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_AgentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106229,12 +107132,13 @@ static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_AgentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUEventData_AgentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106263,23 +107167,25 @@ static void decode_org_csapi_pam_TpPAMAUNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUNotificationData_Identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUNotificationData_Identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUNotificationData_Agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUNotificationData_Agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106319,12 +107225,13 @@ static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106339,12 +107246,13 @@ static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106359,12 +107267,13 @@ static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCEventData_Capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCEventData_Capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106395,12 +107304,13 @@ static void decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCNotificationData_Identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCNotificationData_Identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106413,12 +107323,13 @@ static void decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCNotificationData_Capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCNotificationData_Capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106462,12 +107373,13 @@ static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_AgentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_AgentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106482,12 +107394,13 @@ static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_AgentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_AgentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106502,12 +107415,13 @@ static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_Capabilities = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_Capabilities[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106522,12 +107436,13 @@ static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_AttributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSEventData_AttributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106561,23 +107476,25 @@ static void decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_Agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_Agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_Capability = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_Capability[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106590,12 +107507,13 @@ static void decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_AttributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_AttributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106637,12 +107555,13 @@ static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSEventData_AgentName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSEventData_AgentName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106657,12 +107576,13 @@ static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSEventData_AgentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSEventData_AgentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106677,12 +107597,13 @@ static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSEventData_AttributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSEventData_AttributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106716,12 +107637,13 @@ static void decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSNotificationData_Agent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSNotificationData_Agent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106734,12 +107656,13 @@ static void decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSNotificationData_AttributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSNotificationData_AttributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106781,12 +107704,13 @@ static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106801,12 +107725,13 @@ static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106821,12 +107746,13 @@ static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSEventData_AttributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSEventData_AttributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106860,12 +107786,13 @@ static void decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSNotificationData_Identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSNotificationData_Identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106925,12 +107852,13 @@ static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106945,12 +107873,13 @@ static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -106983,12 +107912,13 @@ static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCEventData_AttributeNames = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCEventData_AttributeNames[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107022,12 +107952,13 @@ static void decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCNotificationData_Identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCNotificationData_Identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107100,12 +108031,13 @@ static void decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCEventData_IdentityName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCEventData_IdentityName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107120,12 +108052,13 @@ static void decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCEventData_IdentityType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCEventData_IdentityType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107171,12 +108104,13 @@ static void decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCNotificationData_Identity = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCNotificationData_Identity[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107189,12 +108123,13 @@ static void decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCNotificationData_Watchers = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMWCNotificationData_Watchers[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107367,12 +108302,13 @@ static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_MessageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_MessageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107405,23 +108341,25 @@ static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_Subject = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_Subject[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_ReceivedDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_ReceivedDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107454,12 +108392,13 @@ static void decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentDescription = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentDescription[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107470,56 +108409,61 @@ static void decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentTransferEncoding = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentTransferEncoding[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentDisposition = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentDisposition[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_PartID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_PartID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107596,23 +108540,25 @@ static void decode_org_csapi_mmm_TpGenericHeaderField_st(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGenericHeaderField_FieldName = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGenericHeaderField_FieldName[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGenericHeaderField_FieldValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGenericHeaderField_FieldValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107671,23 +108617,25 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvbuff_t
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedCriteria_MailboxID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedCriteria_MailboxID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedCriteria_AuthenticationInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedCriteria_AuthenticationInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -107718,23 +108666,25 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedInfo_MailboxID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedInfo_MailboxID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedInfo_FolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedInfo_FolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108191,12 +109141,13 @@ static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NetworkCharge = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NetworkCharge[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108315,12 +109266,13 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"StringValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"StringValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108515,12 +109467,13 @@ static void decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"XMLValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"XMLValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108587,12 +109540,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108612,12 +109566,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceTypeNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceTypeNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108639,12 +109594,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"UnavailableServiceTypeNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"UnavailableServiceTypeNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108666,12 +109622,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"CompatibleServiceTypeNameList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"CompatibleServiceTypeNameList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108693,12 +109650,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"SessionCreatedList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"SessionCreatedList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108720,12 +109678,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"SessionTerminatedList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"SessionTerminatedList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108747,12 +109706,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AgreementSignedList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AgreementSignedList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108774,12 +109734,13 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AgreementEndedList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AgreementEndedList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108834,12 +109795,13 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FrameworkID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FrameworkID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108852,12 +109814,13 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108870,12 +109833,13 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ClientAppID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ClientAppID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -108996,12 +109960,13 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FwID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FwID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109014,12 +109979,13 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ClientAppID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ClientAppID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109032,12 +109998,13 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EntOpID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EntOpID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109050,12 +110017,13 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109068,12 +110036,13 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceSupplierID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceSupplierID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109182,12 +110151,13 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109207,12 +110177,13 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ServiceIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109234,12 +110205,13 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"UnavailableServiceIDList = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"UnavailableServiceIDList[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109270,12 +110242,13 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AppSessionCreated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AppSessionCreated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109288,12 +110261,13 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AppSessionTerminated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AppSessionTerminated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109391,12 +110365,13 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartAddress = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartAddress[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109409,12 +110384,13 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109427,12 +110403,13 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartDate = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartDate[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109445,12 +110422,13 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartPrice = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"VariablePartPrice[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109525,12 +110503,13 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoData = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoData[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109543,12 +110522,13 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoAddress = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoAddress[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109582,12 +110562,13 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoUUEncData = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoUUEncData[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -109663,12 +110644,13 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoVXMLData = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InfoVXMLData[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -110072,12 +111054,13 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"CallAppGenericInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"CallAppGenericInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -110239,12 +111222,13 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"QueueStatus = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"QueueStatus[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -110815,12 +111799,13 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"CallAppGenericInfo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"CallAppGenericInfo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111503,12 +112488,13 @@ static void decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NetworkCharge = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NetworkCharge[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111696,12 +112682,13 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111714,12 +112701,13 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageSubject = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageSubject[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111732,12 +112720,13 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageDateSent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageDateSent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111750,12 +112739,13 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageDateReceived = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageDateReceived[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111768,12 +112758,13 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageDateChanged = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageDateChanged[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111888,12 +112879,13 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageFolder = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMessageFolder[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -111988,12 +112980,13 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxOwner = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxOwner[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112006,12 +112999,13 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxFolder = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxFolder[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112024,12 +113018,13 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxDateCreated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxDateCreated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112042,12 +113037,13 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxDateChanged = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingMailboxDateChanged[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112112,12 +113108,13 @@ static void decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112255,12 +113252,13 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112273,12 +113271,13 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderMessage = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderMessage[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112291,12 +113290,13 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderSubfolder = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderSubfolder[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112309,12 +113309,13 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderDateCreated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderDateCreated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112327,12 +113328,13 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderDateChanged = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessagingFolderDateChanged[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112426,12 +113428,13 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"StringValue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"StringValue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112517,12 +113520,13 @@ static void decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Timestamp = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Timestamp[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112620,12 +113624,13 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"StructuredType = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"StructuredType[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -112638,12 +113643,13 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"XMLString = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"XMLString[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113322,12 +114328,13 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FolderDateCreated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FolderDateCreated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113340,12 +114347,13 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FolderDateChanged = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"FolderDateChanged[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113436,12 +114444,13 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MailboxOwner = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MailboxOwner[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113454,12 +114463,13 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MailboxDateCreated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MailboxDateCreated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113472,12 +114482,13 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MailboxDateChanged = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MailboxDateChanged[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113556,12 +114567,13 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessageDateCreated = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessageDateCreated[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113574,12 +114586,13 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessageDateReceived = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessageDateReceived[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113592,12 +114605,13 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessageDateChanged = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MessageDateChanged[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113703,12 +114717,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DateSent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DateSent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113862,12 +114877,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"RFC822MessageID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"RFC822MessageID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113887,12 +114903,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InReplyTo = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"InReplyTo[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113914,12 +114931,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"References = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"References[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113934,12 +114952,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Subject = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Subject[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113952,12 +114971,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Comments = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Comments[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -113977,12 +114997,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Keywords = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"Keywords[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114029,12 +115050,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeVersion = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeVersion[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114047,12 +115069,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeContent = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeContent[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114065,12 +115088,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeEncoding = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeEncoding[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114083,12 +115107,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114101,12 +115126,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeDescription = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeDescription[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114119,12 +115145,13 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeDisposition = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"MimeDisposition[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114223,12 +115250,13 @@ static void decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DeliveryTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DeliveryTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114306,12 +115334,13 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"BillingID = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"BillingID[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114340,12 +115369,13 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ValidityTime = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ValidityTime[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114482,12 +115512,13 @@ static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"EventNameUndefined[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -114558,7 +115589,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
return tree;
}
-static gboolean dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname _U_) {
+static gboolean dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) {
gboolean be; /* big endianess */
proto_tree *tree _U_;
@@ -114581,5599 +115612,6532 @@ static gboolean dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *pt
case Reply:
- if (strcmp(operation, org_csapi_IpService_setCallback_op) == 0) {
+ if (strcmp(operation, org_csapi_IpService_setCallback_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/IpService") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_IpService_setCallback(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_IpService_setCallbackWithSessionID_op) == 0) {
+ if (strcmp(operation, org_csapi_IpService_setCallbackWithSessionID_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/IpService") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_IpService_setCallbackWithSessionID(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthentication_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthentication_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpInitial") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthentication(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpInitial") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpClientAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCallback_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCallback_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCallback(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAccess") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_abortAuthentication_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_abortAuthentication_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_abortAuthentication(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticationSucceeded_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticationSucceeded_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticationSucceeded(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortAuthentication_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortAuthentication_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortAuthentication(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticationSucceeded_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticationSucceeded_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticationSucceeded(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/notification/IpAppEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_notification_IpAppEventNotification_notificationTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_notification_IpAppEventNotification_notificationTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/notification/IpAppEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_notificationTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_notification_IpEventNotification_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_notification_IpEventNotification_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/notification/IpEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_notification_IpEventNotification_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/notification/IpEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppOAM") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpOAM") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppHeartBeat") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpHeartBeat") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/discovery/IpServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/discovery/IpServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/discovery/IpServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/discovery/IpServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_createServiceProfile_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_createServiceProfile_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_createServiceProfile(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_modifyServiceProfile_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_modifyServiceProfile_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_modifyServiceProfile(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deleteServiceProfile_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deleteServiceProfile_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deleteServiceProfile(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_describeServiceProfile_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_describeServiceProfile_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_describeServiceProfile(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_createServiceContract_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_createServiceContract_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_createServiceContract(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_modifyServiceContract_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_modifyServiceContract_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_modifyServiceContract(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_deleteServiceContract_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_deleteServiceContract_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_deleteServiceContract(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_describeServiceContract_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_describeServiceContract_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_describeServiceContract(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_deleteEntOpAccount_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_deleteEntOpAccount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_deleteEntOpAccount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountInfoQuery_describeEntOpAccount_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountInfoQuery_describeEntOpAccount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountInfoQuery_describeEntOpAccount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createClientApp_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createClientApp_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createClientApp(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifyClientApp_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifyClientApp_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifyClientApp(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteClientApp_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteClientApp_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteClientApp(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifySAG_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifySAG_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifySAG(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteSAG_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteSAG_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteSAG(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeClientApp_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeClientApp_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeClientApp(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_notificationTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_notificationTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_notificationTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwLoadManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordRes_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwFaultManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcOAM") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwOAM") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcHeartBeat") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpFwHeartBeat") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/notification/IpFwEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/notification/IpFwEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/notification/IpSvcEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/fw/fw_service/notification/IpSvcEventNotification") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_routeRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_routeRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_routeErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_routeErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getCallInfoRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getCallInfoRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getCallInfoErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getCallInfoErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_superviseCallRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_superviseCallRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_superviseCallErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_superviseCallErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_callFaultDetected_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_callFaultDetected_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_callEnded_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCall_callEnded_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_routeReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_routeReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_routeReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_release_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_release_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_release(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_deassignCall_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_deassignCall_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_deassignCall(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_getCallInfoReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_getCallInfoReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_setCallChargePlan_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_setCallChargePlan_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_setAdviceOfCharge_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_setAdviceOfCharge_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_superviseCallReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_superviseCallReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCall_continueProcessing_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCall_continueProcessing_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callAborted_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callAborted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpAppCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_createCall_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_createCall_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_enableCallNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_enableCallNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_disableCallNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_disableCallNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_changeCallNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_changeCallNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_getCriteria_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_gccs_IpCallControlManager_getCriteria_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/gccs/IpCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_routeErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_routeErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_superviseRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_superviseRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_superviseErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_superviseErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_routeReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_routeReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_eventReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_eventReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_release_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_release_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_release(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getInfoReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getInfoReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getCall_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getCall_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_attachMediaReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_attachMediaReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_detachMediaReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_detachMediaReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_continueProcessing_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_continueProcessing_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_setChargePlan_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_setChargePlan_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_superviseReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_superviseReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_deassign_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_deassign_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_getProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_setProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpCallLeg_setProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_release_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_release_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpMultiPartyCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncountered_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncountered_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncountered(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpAppMultiMediaCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpAppMultiMediaCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpAppMultiMediaCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaStream_subtract_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaStream_subtract_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaStream") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallLeg") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpAppMultiMediaCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/mmccs/IpMultiMediaCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpAppSubConfCall_chairSelection_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpAppSubConfCall_chairSelection_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpAppSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpAppSubConfCall_floorRequest_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpAppSubConfCall_floorRequest_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpAppSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpAppConfCall_partyJoined_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpAppConfCall_partyJoined_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpAppConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpAppConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_createConference_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_createConference_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_checkResources_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_checkResources_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_reserveResources_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_reserveResources_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_freeResources_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCallControlManager_freeResources_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpAppConfCallControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_splitSubConference_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_splitSubConference_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_mergeSubConference_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_mergeSubConference_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_moveCallLeg_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_moveCallLeg_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_inspectVideo_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_inspectVideo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_appointSpeaker_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_appointSpeaker_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_chairSelection_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_chairSelection_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpSubConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_getSubConferences_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_getSubConferences_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_createSubConference_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_createSubConference_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_leaveMonitorReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_leaveMonitorReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_getConferenceAddress_op) == 0) {
+ if (strcmp(operation, org_csapi_cc_cccs_IpConfCall_getConferenceAddress_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cc/cccs/IpConfCall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUI_sendInfoRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUI_sendInfoErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoAndCollectRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoAndCollectRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoAndCollectErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUI_sendInfoAndCollectErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUI_userInteractionFaultDetected_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUI_userInteractionFaultDetected_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_recordMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_recordMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_recordMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_recordMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_deleteMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_deleteMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_deleteMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_deleteMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_abortActionRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_abortActionRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_abortActionRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_abortActionErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_abortActionErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_abortActionErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_getMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_getMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_getMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUICall_getMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUICall_getMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUICall_getMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIManager_userInteractionAborted_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIManager_userInteractionAborted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIManager_reportEventNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIManager_reportEventNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUI_sendInfoReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUI_sendInfoReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUI_sendInfoReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUI_sendInfoAndCollectReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUI_sendInfoAndCollectReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUI_release_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUI_release_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUI_release(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUI_setOriginatingAddress_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUI_setOriginatingAddress_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUI_setOriginatingAddress(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUI_getOriginatingAddress_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUI_getOriginatingAddress_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUI") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUI_getOriginatingAddress(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUICall_recordMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUICall_recordMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUICall_recordMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUICall_deleteMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUICall_deleteMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUICall_deleteMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUICall_abortActionReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUICall_abortActionReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUICall_abortActionReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUICall_getMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUICall_getMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUICall") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUICall_getMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_createUI_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_createUI_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_createUI(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_createUICall_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_createUICall_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_createUICall(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_changeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_changeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_changeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_getNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_getNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_getNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_enableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_enableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_enableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIManager_disableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIManager_disableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIManager_disableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_deleteMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_deleteMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_deleteMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_deleteMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_putMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_putMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_putMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_putMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageListRes_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageListRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageListErr_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpAppUIAdminManager_getMessageListErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpAppUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIAdminManager_getMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIAdminManager_getMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIAdminManager_putMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIAdminManager_putMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIAdminManager_deleteMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIAdminManager_deleteMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_ui_IpUIAdminManager_getMessageListReq_op) == 0) {
+ if (strcmp(operation, org_csapi_ui_IpUIAdminManager_getMessageListReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/ui/IpUIAdminManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_locationReportRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_locationReportRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_locationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_locationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_locationReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_locationReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppTriggeredUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpAppTriggeredUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpTriggeredUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpTriggeredUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ul/IpTriggeredUserLocation") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpAppUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpAppUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpAppUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpAppUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpAppUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpAppUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ulc/IpUserLocationCamel") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ule/IpAppUserLocationEmergency") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ule/IpAppUserLocationEmergency") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ule/IpUserLocationEmergency") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReports_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReports_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ule/IpUserLocationEmergency") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReports(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationReports_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationReports_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ule/IpUserLocationEmergency") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationReports(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_statusReportRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_statusReportRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_statusReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_statusReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpAppUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_statusReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_statusReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/us/IpUserStatus") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ub/IpAppUserBinding") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ub/IpAppUserBinding") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ub/IpUserBinding") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop_op) == 0) {
+ if (strcmp(operation, org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mm/ub/IpUserBinding") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities_op) == 0) {
+ if (strcmp(operation, org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/termcap/IpTerminalCapabilities") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_op) == 0) {
+ if (strcmp(operation, org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/termcap/IpAppExtendedTerminalCapabilities") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_op) == 0) {
+ if (strcmp(operation, org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/termcap/IpAppExtendedTerminalCapabilities") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_op) == 0) {
+ if (strcmp(operation, org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/termcap/IpExtendedTerminalCapabilities") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStop_op) == 0) {
+ if (strcmp(operation, org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStop_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/termcap/IpExtendedTerminalCapabilities") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStop(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSession_connectRes_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSession_connectRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSession_connectRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSession_connectErr_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSession_connectErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSession_connectErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSession_superviseDataSessionRes_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSession_superviseDataSessionRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSession_superviseDataSessionErr_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSession_superviseDataSessionErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationContinued_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationContinued_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationContinued(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInterrupted_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInterrupted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInterrupted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpAppDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_connectReq_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_connectReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_connectReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_release_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_release_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_release(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_superviseDataSessionReq_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_superviseDataSessionReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_setDataSessionChargePlan_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_setDataSessionChargePlan_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_setAdviceOfCharge_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_setAdviceOfCharge_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_deassignDataSession_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_deassignDataSession_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSession_continueProcessing_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSession_continueProcessing_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSession_continueProcessing(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_changeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_changeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_enableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_enableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_disableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_disableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_disableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_getNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_getNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_createNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_dsc_IpDataSessionControlManager_createNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/dsc/IpDataSessionControlManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessagingManager_openMailbox_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessagingManager_openMailbox_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessagingManager_openMailbox(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessagingManager_enableMessagingNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessagingManager_enableMessagingNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessagingManager_disableMessagingNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessagingManager_disableMessagingNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_mailboxTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_mailboxTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpAppMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpAppMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_messagingEventNotify_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_messagingEventNotify_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpAppMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpAppMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_close_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_close_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_close(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_lock_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_lock_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_lock(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_unlock_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_unlock_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_unlock(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_getInfoAmount_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_getInfoAmount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_getInfoAmount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_getInfoProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_getInfoProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_getInfoProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_setInfoProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_setInfoProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_setInfoProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_openFolder_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_openFolder_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_openFolder(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_createFolder_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_createFolder_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_createFolder(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailbox_remove_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailbox_remove_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailbox_remove(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessage_getInfoAmount_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessage_getInfoAmount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessage") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessage_getInfoAmount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessage_getInfoProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessage_getInfoProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessage") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessage_getInfoProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessage_setInfoProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessage_setInfoProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessage") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessage_setInfoProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessage_remove_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessage_remove_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessage") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessage_remove(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMessage_getContent_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMessage_getContent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMessage") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMessage_getContent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_getInfoAmount_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_getInfoAmount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_getInfoProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_getInfoProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_setInfoProperties_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_setInfoProperties_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_putMessage_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_putMessage_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_putMessage(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_getMessage_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_getMessage_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_getMessage(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_close_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_close_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_close(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_gms_IpMailboxFolder_remove_op) == 0) {
+ if (strcmp(operation, org_csapi_gms_IpMailboxFolder_remove_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/gms/IpMailboxFolder") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_gms_IpMailboxFolder_remove(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getVPrPID_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getVPrPID_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getVPrPID(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getSlaID_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getSlaID_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getSlaID(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getStatus_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getStatus_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getStatus(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getProvisionedQoSInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getProvisionedQoSInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getValidityInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getValidityInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getValidityInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getPipeQoSInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getPipeQoSInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrP_getDsCodepoint_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrP_getDsCodepoint_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrP") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrN_getVPrPList_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrN_getVPrPList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrN") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrN_getVPrPList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrN_getVPrP_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrN_getVPrP_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrN") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrN_getVPrP(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrN_createVPrP_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrN_createVPrP_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrN") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrN_createVPrP(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpVPrN_deleteVPrP_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpVPrN_deleteVPrP_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpVPrN") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpVPrN_deleteVPrP(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSMenu_getTemplate_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSMenu_getTemplate_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSMenu") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSMenu_getTemplate(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSMenu_getTemplateList_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSMenu_getTemplateList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSMenu") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpConnectivityManager_getQoSMenu_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpConnectivityManager_getQoSMenu_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpConnectivityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpConnectivityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getTemplateType_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getTemplateType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getDescription_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getDescription_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_getDescription(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setSlaID_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setSlaID_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getPipeQoSInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getPipeQoSInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setPipeQoSInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setPipeQoSInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getValidityInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getValidityInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setValidityInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setValidityInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getDsCodepoint_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpQoSTemplate_getDsCodepoint_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpQoSTemplate") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetwork_getSiteList_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetwork_getSiteList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetwork") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetwork_getVPrN_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetwork_getVPrN_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetwork") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetwork_getSite_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetwork_getSite_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetwork") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetworkSite") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSiteID_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSiteID_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetworkSite") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetworkSite") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetworkSite") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetworkSite") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet_op) == 0) {
+ if (strcmp(operation, org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cm/IpEnterpriseNetworkSite") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_updateBalanceRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_updateBalanceRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_updateBalanceErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_updateBalanceErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_createVoucherRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_createVoucherRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_createVoucherErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_createVoucherErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_destroyVoucherRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_destroyVoucherRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_destroyVoucherErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_destroyVoucherErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryVoucherRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryVoucherRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryVoucherErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryVoucherErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryUserVouchersRes_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryUserVouchersRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryUserVouchersErr_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAppAccountManager_queryUserVouchersErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAppAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_queryBalanceReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_queryBalanceReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_changeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_changeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_changeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_getNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_getNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_getNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_enableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_enableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_enableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_disableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_disableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_disableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_updateBalanceReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_updateBalanceReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_createVoucherReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_createVoucherReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_createVoucherReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_destroyVoucherReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_destroyVoucherReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_queryVoucherReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_queryVoucherReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_am_IpAccountManager_queryUserVouchersReq_op) == 0) {
+ if (strcmp(operation, org_csapi_am_IpAccountManager_queryUserVouchersReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/am/IpAccountManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditAmountErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditAmountErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditAmountRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditAmountRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditUnitErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditUnitErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditUnitRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_creditUnitRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitAmountErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitAmountErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitAmountRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitAmountRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitUnitErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitUnitErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitUnitRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_debitUnitRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditAmountErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditAmountErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditAmountRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditAmountRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditUnitErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditUnitErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditUnitRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directCreditUnitRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitAmountErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitAmountErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitAmountRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitAmountRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitUnitErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitUnitErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitUnitRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_directDebitUnitRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_extendLifeTimeErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_extendLifeTimeErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_extendLifeTimeRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_extendLifeTimeRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_rateErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_rateErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_rateErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_rateRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_rateRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_rateRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveAmountErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveAmountErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveAmountRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveAmountRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveUnitErr_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveUnitErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveUnitRes_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_reserveUnitRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingSession_sessionEnded_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingSession_sessionEnded_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_creditAmountReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_creditAmountReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_creditUnitReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_creditUnitReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_debitAmountReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_debitAmountReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_debitUnitReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_debitUnitReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_directCreditAmountReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_directCreditAmountReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_directCreditUnitReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_directCreditUnitReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_directDebitAmountReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_directDebitAmountReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_directDebitUnitReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_directDebitUnitReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_extendLifeTimeReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_extendLifeTimeReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_getAmountLeft_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_getAmountLeft_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_getLifeTimeLeft_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_getLifeTimeLeft_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_getUnitLeft_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_getUnitLeft_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_rateReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_rateReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_rateReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_release_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_release_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_release(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_reserveAmountReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_reserveAmountReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingSession_reserveUnitReq_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingSession_reserveUnitReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingSession") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingManager_sessionAborted_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingManager_sessionAborted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpAppChargingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingManager_createChargingSession_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingManager_createChargingSession_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingManager_createChargingSession(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_cs_IpChargingManager_createSplitChargingSession_op) == 0) {
+ if (strcmp(operation, org_csapi_cs_IpChargingManager_createSplitChargingSession_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/cs/IpChargingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpAppPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpAppPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpAppPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpPolicyEvalManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpPolicyEvalManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpPolicyEvalManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpPolicyEvalManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpPolicyEvalManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/evaluation/IpPolicyEvalManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_getAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_getAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicy") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_setAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_setAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicy") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_getAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_getAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicy") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_setAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicy_setAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicy") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyIterator_getList_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyIterator_getList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyIterator") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_createRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_createRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_createRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_removeRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_removeRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_createCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_createCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_removeCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_removeCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_createAction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_createAction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getAction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getAction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_removeAction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_removeAction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getActionCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getActionCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRepository") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getParentGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getParentGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getParentDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getParentDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_createCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_createCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_removeCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_removeCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getConditionCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getConditionCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_createAction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_createAction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getAction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getAction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_removeAction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_removeAction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getActionCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getActionCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getActionIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getActionIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setConditionList_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setConditionList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getConditionList_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getConditionList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setActionList_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_setActionList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getActionList_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyRule_getActionList_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyRule") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_createDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_createDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_removeDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_removeDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getDomainCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getDomainCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_createRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_createRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_createRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_removeRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_removeRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_startTransaction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_startTransaction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_startTransaction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_commitTransaction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_commitTransaction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_abortTransaction_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyManager_abortTransaction_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransaction(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_createGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_createGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_removeGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_removeGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_createRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_createRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_removeRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_removeRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyGroup") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyEventDefinition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyEventDefinition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyEventDefinition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyEventDefinition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyEventDefinition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyCondition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyCondition_getParentRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyCondition_getParentRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyCondition") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyAction_getParentRepository_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyAction_getParentRepository_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyAction") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRepository(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyAction_getParentRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyAction_getParentRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyAction") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getParentDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicySignature_getParentDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicySignature") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeDomain_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeDomain_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeRule_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeRule_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createVariable_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createVariable_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableType_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariable_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getVariable_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeVariable_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeVariable_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createSignature_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_createSignature_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getSignature_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getSignature_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeSignature_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_removeSignature_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator_op) == 0) {
+ if (strcmp(operation, org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/policy/provisioning/IpPolicyDomain") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentAssignment") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMAgentTypeManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMCapabilityManagement") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMProvisioningManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMProvisioningManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMProvisioningManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/provisioning/IpPAMProvisioningManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMIdentityPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMIdentityPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMIdentityPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAgentPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAgentPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAgentPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAgentPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAgentPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAgentPresence") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpAppPAMPreferenceCheck") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAvailability_getAvailability_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAvailability_getAvailability_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAvailability") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAvailability_getPreference_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAvailability_getPreference_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAvailability") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMAvailability_setPreference_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMAvailability_setPreference_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMAvailability") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/access/IpPAMPresenceAvailabilityManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpAppPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpAppPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_isRegistered_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_isRegistered_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_registerForEvent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_registerForEvent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventHandler") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_getAuthToken_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_getAuthToken_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_obtainInterface_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_obtainInterface_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_getAccessControl_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_getAccessControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_setAccessControl_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_setAccessControl_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_activateService_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_activateService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_deactivateService_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_deactivateService_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_op) == 0) {
+ if (strcmp(operation, org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/pam/event/IpPAMEventManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminated_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminated_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminated(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessagingManager") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_createFolderRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_createFolderRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_createFolderErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_createFolderErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFoldersRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFoldersRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFoldersErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFoldersErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteFolderRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteFolderRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteFolderErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteFolderErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyFolderRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyFolderRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyFolderErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyFolderErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveFolderRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveFolderRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveFolderErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveFolderErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_putMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_putMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_putMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_putMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_copyMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_moveMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_deleteMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessagesRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessagesRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessagesErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessagesErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageContentRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageContentRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageContentErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageContentErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFullMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFullMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFullMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFullMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_close_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_close_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_close(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_createFolderReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_createFolderReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_createFolderReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getFoldersReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getFoldersReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_deleteFolderReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_deleteFolderReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_copyFolderReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_copyFolderReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_moveFolderReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_moveFolderReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_putMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_putMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_putMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_copyMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_copyMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_moveMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_moveMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_deleteMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_deleteMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_listMessagesReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_listMessagesReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageHeadersReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageHeadersReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageContentReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageContentReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getFullMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getFullMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMailbox") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpAppMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_close_op) == 0) {
+ if (strcmp(operation, org_csapi_mmm_IpMultiMediaMessaging_close_op) == 0
+ && (!idlname || strcmp(idlname, "org/csapi/mmm/IpMultiMediaMessaging") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvb, pinfo, tree, offset, header, operation);
return TRUE;
@@ -120244,1493 +122208,1195 @@ void proto_register_handoff_giop_parlay(void) {
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/IpService", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/am/IpAccountManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/am/IpAppAccountManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppLoadManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppConfCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpAppChargingSession", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppConfCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ub/IpUserBinding", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppSubConfCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpConfCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyAction", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpConfCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ulc/IpAppUserLocationCamel", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpSubConfCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMProvisioningManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpAppCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpAppCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAuthentication", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpConfCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCallLeg", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpChargingManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/notification/IpSvcEventNotification", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAccess", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCallLeg", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpAppDataSessionControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaStream", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppCallLeg", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/am/IpAccountManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppMultiPartyCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppHeartBeat", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpCallLeg", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyGroup", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpMultiPartyCall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpDataSessionControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpMultiPartyCallControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMailboxFolder", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpConnectivityManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountInfoQuery", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpEnterpriseNetwork", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpAppChargingManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpEnterpriseNetworkSite", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpQoSMenu", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpQoSTemplate", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyCondition", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpVPrN", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMultiMediaMessaging", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpVPrP", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpAppCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpAppChargingManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMailbox", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpAppChargingSession", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUI", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpChargingManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyDomain", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpChargingSession", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpAppDataSession", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMessagingManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpAppDataSessionControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ub/IpAppUserBinding", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpDataSession", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicy", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpDataSessionControlManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ulc/IpUserLocationCamel", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpEnterpriseNetworkSite", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAccess", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppCallLeg", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAuthentication", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMAvailability", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpChargingSession", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpClientAccess", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMCapabilityManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpInitial", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/discovery/IpServiceDiscovery", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpHeartBeat", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppFaultManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMPresenceAvailabilityManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppHeartBeat", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCallLeg", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpAppUserLocation", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppLoadManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpAppPAMPreferenceCheck", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppOAM", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpFaultManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpAppTriggeredUserLocation", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpHeartBeat", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpMultiPartyCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpConnectivityManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpLoadManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/discovery/IpServiceDiscovery", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpOAM", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUICall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/notification/IpAppEventNotification", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwOAM", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/notification/IpEventNotification", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppConfCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaStream", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcLoadManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/IpService", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMIdentityManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/notification/IpEventNotification", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/evaluation/IpPolicyEvalManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountInfoQuery", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMailbox", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/notification/IpAppEventNotification", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppSubConfCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpTriggeredUserLocation", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUI", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/notification/IpFwEventNotification", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwFaultManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwHeartBeat", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpMultiPartyCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyIterator", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwLoadManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwOAM", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpAppDataSession", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcFaultManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUIManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcHeartBeat", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyRule", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMultiMediaMessagingManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcLoadManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpOAM", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcOAM", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyEventDefinition", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/notification/IpFwEventNotification", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpFaultManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/notification/IpSvcEventNotification", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpInitial", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentTypeManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpTerminalCapabilities", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpAppMessagingManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/evaluation/IpAppPolicyDomain", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMailbox", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyRepository", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMailboxFolder", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppMultiPartyCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMessage", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpSubConfCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMessagingManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpLoadManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ub/IpAppUserBinding", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpAppCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ub/IpUserBinding", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcHeartBeat", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpAppTriggeredUserLocation", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpCallLeg", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpAppUserLocation", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpAppExtendedTerminalCapabilities", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpTriggeredUserLocation", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMAgentPresence", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpUserLocation", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ulc/IpAppUserLocationCamel", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentAssignment", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ulc/IpUserLocationCamel", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ule/IpAppUserLocationEmergency", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ule/IpUserLocationEmergency", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppFaultManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/us/IpAppUserStatus", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpVPrP", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/us/IpUserStatus", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMailbox", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUIAdminManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMultiMediaMessaging", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUICall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMultiMediaMessagingManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUIAdminManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMailbox", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ule/IpUserLocationEmergency", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMultiMediaMessaging", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwLoadManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMultiMediaMessagingManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpPAMEventManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpAppPAMPreferenceCheck", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpUserLocation", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMAgentPresence", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/am/IpAppAccountManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMAvailability", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMIdentityPresence", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMPresenceAvailabilityManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpClientAccess", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpAppPAMEventHandler", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpEnterpriseNetwork", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpPAMEventHandler", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMultiMediaMessaging", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpPAMEventManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpPAMEventHandler", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentAssignment", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpConfCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMIdentityPresence", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentTypeManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppConfCall", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMCapabilityManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpAppPAMEventHandler", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMIdentityManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcOAM", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpAppMessagingManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMProvisioningManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppOAM", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/evaluation/IpAppPolicyDomain", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpVPrN", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/evaluation/IpPolicyEvalManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicy", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwHeartBeat", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyAction", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/us/IpUserStatus", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyCondition", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyDomain", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwFaultManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyEventDefinition", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyGroup", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyIterator", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCallControlManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUIManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyRepository", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMailbox", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyRule", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicySignature", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ule/IpAppUserLocationEmergency", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpAppExtendedTerminalCapabilities", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpExtendedTerminalCapabilities", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/us/IpAppUserStatus", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpTerminalCapabilities", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUI", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMessage", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUIAdminManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpDataSession", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUICall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcFaultManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUIManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUI", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpExtendedTerminalCapabilities", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUIAdminManager", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMultiMediaMessagingManager", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUICall", proto_parlay ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCallLeg", proto_parlay ); /* explicit dissector */
+ register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUIManager", proto_parlay ); /* explicit dissector */
- #endif
diff --git a/plugins/giop/packet-tango.c b/plugins/giop/packet-tango.c
index 63aa291f8c..6b556a623e 100644
--- a/plugins/giop/packet-tango.c
+++ b/plugins/giop/packet-tango.c
@@ -288,8 +288,8 @@ static const char Tango_Device_3_set_attribute_config_3_op[] = "set_attribute_co
/* Begin Exception (containing members) String Declare */
-static const char user_exception_Tango_MultiDevFailed[] = "IDL:Tango/MultiDevFailed:1.0" ;
static const char user_exception_Tango_DevFailed[] = "IDL:Tango/DevFailed:1.0" ;
+static const char user_exception_Tango_MultiDevFailed[] = "IDL:Tango/MultiDevFailed:1.0" ;
/* End Exception (containing members) String Declare */
@@ -435,17 +435,17 @@ static const value_string Tango_DispLevel[] = {
-/* Exception = IDL:Tango/MultiDevFailed:1.0 */
+/* Exception = IDL:Tango/DevFailed:1.0 */
-static void decode_ex_Tango_MultiDevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_Tango_DevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
/* Operation specific Variable declarations Begin */
- guint32 u_octet4_loop_MultiDevFailed_errors;
- guint32 i_MultiDevFailed_errors;
+ guint32 u_octet4_loop_DevFailed_errors;
+ guint32 i_DevFailed_errors;
/* Operation specific Variable declarations End */
@@ -453,38 +453,38 @@ static void decode_ex_Tango_MultiDevFailed(tvbuff_t *tvb _U_, packet_info *pinfo
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
- u_octet4_loop_MultiDevFailed_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
+ u_octet4_loop_DevFailed_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of MultiDevFailed_errors = %u",u_octet4_loop_MultiDevFailed_errors);
+ proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of DevFailed_errors = %u",u_octet4_loop_DevFailed_errors);
}
- for (i_MultiDevFailed_errors=0; i_MultiDevFailed_errors < u_octet4_loop_MultiDevFailed_errors; i_MultiDevFailed_errors++) {
+ for (i_DevFailed_errors=0; i_DevFailed_errors < u_octet4_loop_DevFailed_errors; i_DevFailed_errors++) {
- /* Begin struct "Tango_NamedDevError" */
+ /* Begin struct "Tango_DevError" */
- decode_Tango_NamedDevError_st(tvb, pinfo, tree, offset, header, operation);
+ decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation);
- /* End struct "Tango_NamedDevError" */
+ /* End struct "Tango_DevError" */
}
}
-/* Exception = IDL:Tango/DevFailed:1.0 */
+/* Exception = IDL:Tango/MultiDevFailed:1.0 */
-static void decode_ex_Tango_DevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
+static void decode_ex_Tango_MultiDevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
/* Operation specific Variable declarations Begin */
- guint32 u_octet4_loop_DevFailed_errors;
- guint32 i_DevFailed_errors;
+ guint32 u_octet4_loop_MultiDevFailed_errors;
+ guint32 i_MultiDevFailed_errors;
/* Operation specific Variable declarations End */
@@ -492,21 +492,21 @@ static void decode_ex_Tango_DevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
- u_octet4_loop_DevFailed_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
+ u_octet4_loop_MultiDevFailed_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of DevFailed_errors = %u",u_octet4_loop_DevFailed_errors);
+ proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of MultiDevFailed_errors = %u",u_octet4_loop_MultiDevFailed_errors);
}
- for (i_DevFailed_errors=0; i_DevFailed_errors < u_octet4_loop_DevFailed_errors; i_DevFailed_errors++) {
+ for (i_MultiDevFailed_errors=0; i_MultiDevFailed_errors < u_octet4_loop_MultiDevFailed_errors; i_MultiDevFailed_errors++) {
- /* Begin struct "Tango_DevError" */
+ /* Begin struct "Tango_NamedDevError" */
- decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation);
+ decode_Tango_NamedDevError_st(tvb, pinfo, tree, offset, header, operation);
- /* End struct "Tango_DevError" */
+ /* End struct "Tango_NamedDevError" */
}
@@ -531,16 +531,16 @@ static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
return FALSE;
- if (strcmp(header->exception_id, user_exception_Tango_MultiDevFailed) == 0) {
+ if (strcmp(header->exception_id, user_exception_Tango_DevFailed) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_Tango_MultiDevFailed(tvb, pinfo, tree, offset, header, operation); /* IDL:Tango/MultiDevFailed:1.0 */
+ decode_ex_Tango_DevFailed(tvb, pinfo, tree, offset, header, operation); /* IDL:Tango/DevFailed:1.0 */
return TRUE;
}
- if (strcmp(header->exception_id, user_exception_Tango_DevFailed) == 0) {
+ if (strcmp(header->exception_id, user_exception_Tango_MultiDevFailed) == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_Tango_DevFailed(tvb, pinfo, tree, offset, header, operation); /* IDL:Tango/DevFailed:1.0 */
+ decode_ex_Tango_MultiDevFailed(tvb, pinfo, tree, offset, header, operation); /* IDL:Tango/MultiDevFailed:1.0 */
return TRUE;
}
@@ -576,12 +576,13 @@ static void decode_get_Tango_Device_name_at(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -608,12 +609,13 @@ static void decode_get_Tango_Device_description_at(tvbuff_t *tvb _U_, packet_inf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -666,12 +668,13 @@ static void decode_get_Tango_Device_status_at(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"status = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"status[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -698,12 +701,13 @@ static void decode_get_Tango_Device_adm_name_at(tvbuff_t *tvb _U_, packet_info *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"adm_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"adm_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -740,12 +744,13 @@ static void decode_Tango_Device_command_inout(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -836,12 +841,13 @@ static void decode_Tango_Device_get_attribute_config(tvbuff_t *tvb _U_, packet_i
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1036,12 +1042,13 @@ static void decode_Tango_Device_read_attributes(tvbuff_t *tvb _U_, packet_info *
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1318,12 +1325,13 @@ static void decode_Tango_Device_black_box(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevVarStringArray = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevVarStringArray[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1552,12 +1560,13 @@ static void decode_Tango_Device_command_query(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1640,12 +1649,13 @@ static void decode_Tango_Device_2_command_inout_2(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1742,12 +1752,13 @@ static void decode_Tango_Device_2_read_attributes_2(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -1858,12 +1869,13 @@ static void decode_Tango_Device_2_get_attribute_config_2(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2043,12 +2055,13 @@ static void decode_Tango_Device_2_command_query_2(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2134,12 +2147,13 @@ static void decode_Tango_Device_2_command_inout_history_2(tvbuff_t *tvb _U_, pac
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"command[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2239,12 +2253,13 @@ static void decode_Tango_Device_2_read_attribute_history_2(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2352,12 +2367,13 @@ static void decode_Tango_Device_3_read_attributes_3(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2550,12 +2566,13 @@ static void decode_Tango_Device_3_read_attribute_history_3(tvbuff_t *tvb _U_, pa
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2738,12 +2755,13 @@ static void decode_Tango_Device_3_get_attribute_config_3(tvbuff_t *tvb _U_, pack
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"names[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -2947,12 +2965,13 @@ static void decode_Tango_DevVarLongStringArray_st(tvbuff_t *tvb _U_, packet_info
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevVarLongStringArray_svalue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevVarLongStringArray_svalue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3007,12 +3026,13 @@ static void decode_Tango_DevVarDoubleStringArray_st(tvbuff_t *tvb _U_, packet_in
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevVarDoubleStringArray_svalue = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevVarDoubleStringArray_svalue[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3077,12 +3097,13 @@ static void decode_Tango_DevCmdInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_cmd_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_cmd_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3103,23 +3124,25 @@ static void decode_Tango_DevCmdInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_in_type_desc = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_in_type_desc[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_out_type_desc = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_out_type_desc[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3147,12 +3170,13 @@ static void decode_Tango_DevCmdInfo_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_2_cmd_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_2_cmd_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3179,23 +3203,25 @@ static void decode_Tango_DevCmdInfo_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_2_in_type_desc = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_2_in_type_desc[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_2_out_type_desc = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevCmdInfo_2_out_type_desc[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3222,12 +3248,13 @@ static void decode_Tango_DevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevError_reason = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevError_reason[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3239,23 +3266,25 @@ static void decode_Tango_DevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevError_desc = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevError_desc[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevError_origin = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevError_origin[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3285,12 +3314,13 @@ static void decode_Tango_NamedDevError_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NamedDevError_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"NamedDevError_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3343,12 +3373,13 @@ static void decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3381,122 +3412,133 @@ static void decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_label = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_label[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_standard_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_standard_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_display_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_display_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_format = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_format[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_min_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_min_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_max_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_max_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_min_alarm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_min_alarm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_max_alarm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_max_alarm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_writable_attr_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_writable_attr_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3509,12 +3551,13 @@ static void decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3546,12 +3589,13 @@ static void decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3584,122 +3628,133 @@ static void decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_label = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_label[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_standard_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_standard_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_display_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_display_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_format = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_format[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_min_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_min_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_max_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_max_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_min_alarm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_min_alarm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_max_alarm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_max_alarm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_writable_attr_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_writable_attr_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3718,12 +3773,13 @@ static void decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_2_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3771,12 +3827,13 @@ static void decode_Tango_AttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeValue_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeValue_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3863,12 +3920,13 @@ static void decode_Tango_AttributeValue_3_st(tvbuff_t *tvb _U_, packet_info *pin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeValue_3_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeValue_3_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3933,23 +3991,25 @@ static void decode_Tango_ChangeEventProp_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ChangeEventProp_rel_change = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ChangeEventProp_rel_change[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ChangeEventProp_abs_change = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ChangeEventProp_abs_change[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3962,12 +4022,13 @@ static void decode_Tango_ChangeEventProp_st(tvbuff_t *tvb _U_, packet_info *pinf
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ChangeEventProp_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ChangeEventProp_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -3998,12 +4059,13 @@ static void decode_Tango_PeriodicEventProp_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"PeriodicEventProp_period = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"PeriodicEventProp_period[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4016,12 +4078,13 @@ static void decode_Tango_PeriodicEventProp_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"PeriodicEventProp_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"PeriodicEventProp_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4052,34 +4115,37 @@ static void decode_Tango_ArchiveEventProp_st(tvbuff_t *tvb _U_, packet_info *pin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_rel_change = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_rel_change[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_abs_change = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_abs_change[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_period = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_period[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4092,12 +4158,13 @@ static void decode_Tango_ArchiveEventProp_st(tvbuff_t *tvb _U_, packet_info *pin
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"ArchiveEventProp_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4174,67 +4241,73 @@ static void decode_Tango_AttributeAlarm_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_min_alarm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_min_alarm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_max_alarm = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_max_alarm[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_min_warning = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_min_warning[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_max_warning = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_max_warning[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_delta_t = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_delta_t[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_delta_val = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_delta_val[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4247,12 +4320,13 @@ static void decode_Tango_AttributeAlarm_st(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeAlarm_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4286,12 +4360,13 @@ static void decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4324,100 +4399,109 @@ static void decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_description = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_description[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_label = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_label[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_standard_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_standard_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_display_unit = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_display_unit[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_format = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_format[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_min_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_min_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_max_value = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_max_value[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_writable_attr_name = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_writable_attr_name[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4454,12 +4538,13 @@ static void decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4474,12 +4559,13 @@ static void decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pi
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_sys_extensions = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"AttributeConfig_3_sys_extensions[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4509,34 +4595,37 @@ static void decode_Tango_DevInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_dev_class = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_dev_class[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_server_id = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_server_id[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_server_host = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_server_host[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4547,12 +4636,13 @@ static void decode_Tango_DevInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_doc_url = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_doc_url[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4580,34 +4670,37 @@ static void decode_Tango_DevInfo_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_dev_class = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_dev_class[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_server_id = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_server_id[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_server_host = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_server_host[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4618,23 +4711,25 @@ static void decode_Tango_DevInfo_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_doc_url = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_doc_url[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
- if (u_octet4 > 0)
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_dev_type = %s",seq);
-
+ if (u_octet4 > 0) {
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"DevInfo_3_dev_type[%u] = %s", seq, u_octet4);
+ }
+ else {
+ proto_tree_add_text(tree,tvb,*offset-4-u_octet4,4,"length = %u",u_octet4);
+ }
}
-
g_free(seq); /* free buffer */
seq = NULL;
@@ -4814,7 +4909,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
return tree;
}
-static gboolean dissect_tango(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname _U_) {
+static gboolean dissect_tango(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) {
gboolean be; /* big endianess */
proto_tree *tree _U_;
@@ -4837,139 +4932,162 @@ static gboolean dissect_tango(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptr
case Reply:
- if (strcmp(operation, Tango_Device_command_inout_op) == 0) {
+ if (strcmp(operation, Tango_Device_command_inout_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_command_inout(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_get_attribute_config_op) == 0) {
+ if (strcmp(operation, Tango_Device_get_attribute_config_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_get_attribute_config(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_set_attribute_config_op) == 0) {
+ if (strcmp(operation, Tango_Device_set_attribute_config_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_set_attribute_config(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_read_attributes_op) == 0) {
+ if (strcmp(operation, Tango_Device_read_attributes_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_read_attributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_write_attributes_op) == 0) {
+ if (strcmp(operation, Tango_Device_write_attributes_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_write_attributes(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_ping_op) == 0) {
+ if (strcmp(operation, Tango_Device_ping_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_ping(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_black_box_op) == 0) {
+ if (strcmp(operation, Tango_Device_black_box_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_black_box(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_info_op) == 0) {
+ if (strcmp(operation, Tango_Device_info_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_info(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_command_list_query_op) == 0) {
+ if (strcmp(operation, Tango_Device_command_list_query_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_command_list_query(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_command_query_op) == 0) {
+ if (strcmp(operation, Tango_Device_command_query_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_command_query(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_command_inout_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_command_inout_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_command_inout_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_read_attributes_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_read_attributes_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_read_attributes_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_get_attribute_config_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_get_attribute_config_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_get_attribute_config_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_command_list_query_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_command_list_query_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_command_list_query_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_command_query_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_command_query_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_command_query_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_command_inout_history_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_command_inout_history_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_command_inout_history_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_2_read_attribute_history_2_op) == 0) {
+ if (strcmp(operation, Tango_Device_2_read_attribute_history_2_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_2") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_2_read_attribute_history_2(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_3_read_attributes_3_op) == 0) {
+ if (strcmp(operation, Tango_Device_3_read_attributes_3_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_3") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_3_read_attributes_3(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_3_write_attributes_3_op) == 0) {
+ if (strcmp(operation, Tango_Device_3_write_attributes_3_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_3") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_3_write_attributes_3(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_3_read_attribute_history_3_op) == 0) {
+ if (strcmp(operation, Tango_Device_3_read_attribute_history_3_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_3") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_3_read_attribute_history_3(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_3_info_3_op) == 0) {
+ if (strcmp(operation, Tango_Device_3_info_3_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_3") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_3_info_3(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_3_get_attribute_config_3_op) == 0) {
+ if (strcmp(operation, Tango_Device_3_get_attribute_config_3_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_3") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_3_get_attribute_config_3(tvb, pinfo, tree, offset, header, operation);
return TRUE;
}
- if (strcmp(operation, Tango_Device_3_set_attribute_config_3_op) == 0) {
+ if (strcmp(operation, Tango_Device_3_set_attribute_config_3_op) == 0
+ && (!idlname || strcmp(idlname, "Tango/Device_3") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_Tango_Device_3_set_attribute_config_3(tvb, pinfo, tree, offset, header, operation);
return TRUE;
@@ -5070,33 +5188,27 @@ void proto_register_handoff_giop_tango(void) {
- #if 0
/* Register for Explicit Dissection */
register_giop_user_module(dissect_tango, "TANGO", "Tango/Device", proto_tango ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_tango, "TANGO", "Tango/Device_3", proto_tango ); /* explicit dissector */
+ register_giop_user_module(dissect_tango, "TANGO", "Tango/Device_2", proto_tango ); /* explicit dissector */
- #endif
- #if 0
/* Register for Explicit Dissection */
- register_giop_user_module(dissect_tango, "TANGO", "Tango/Device_2", proto_tango ); /* explicit dissector */
+ register_giop_user_module(dissect_tango, "TANGO", "Tango/Device_3", proto_tango ); /* explicit dissector */
- #endif