summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-giop.c47
-rw-r--r--epan/dissectors/packet-giop.h5
-rw-r--r--epan/libethereal.def2
-rw-r--r--plugins/giop/packet-parlay.c13759
4 files changed, 994 insertions, 12819 deletions
diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c
index 8e6cbc2cad..3ac01c9055 100644
--- a/epan/dissectors/packet-giop.c
+++ b/epan/dissectors/packet-giop.c
@@ -2277,6 +2277,30 @@ gint32 get_CDR_long(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian, i
return val;
}
+/* Copy a 8 octet sequence from the tvbuff
+ * which represents a signed long long value, and convert
+ * it to an signed long long vaule, taking into account byte order.
+ * offset is first incremented so that it falls on a proper alignment
+ * boundary for long long values.
+ * offset is then incremented by 8, to indicate the 8 octets which
+ * have been processed.
+ */
+
+gint64 get_CDR_long_long(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian, int boundary) {
+
+ gint64 val;
+
+ /* unsigned long long values must be aligned on a 8 byte boundary */
+ while( ( (*offset + boundary) % 8) != 0)
+ ++(*offset);
+
+ val = (stream_is_big_endian) ? tvb_get_ntoh64 (tvb, *offset) :
+ tvb_get_letoh64 (tvb, *offset);
+
+ *offset += 4;
+ return val;
+}
+
/*
* Decode an Object type, and display it on the tree.
*/
@@ -2567,6 +2591,29 @@ guint32 get_CDR_ulong(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian,
return val;
}
+/* Copy a 8 octet sequence from the tvbuff
+ * which represents an unsigned long long value, and convert
+ * it to an unsigned long long vaule, taking into account byte order.
+ * offset is first incremented so that it falls on a proper alignment
+ * boundary for unsigned long long values.
+ * offset is then incremented by 4, to indicate the 4 octets which
+ * have been processed.
+ */
+
+guint64 get_CDR_ulong_long(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian, int boundary) {
+
+ guint64 val;
+
+ /* unsigned long long values must be aligned on a 8 byte boundary */
+ while( ( (*offset + boundary) % 8) != 0)
+ ++(*offset);
+
+ val = (stream_is_big_endian) ? tvb_get_ntoh64 (tvb, *offset) :
+ tvb_get_letoh64 (tvb, *offset);
+
+ *offset += 8;
+ return val;
+}
/* Copy a 2 octet sequence from the tvbuff
* which represents an unsigned short value, and convert
diff --git a/epan/dissectors/packet-giop.h b/epan/dissectors/packet-giop.h
index 52a2f0b4e2..6c672baf03 100644
--- a/epan/dissectors/packet-giop.h
+++ b/epan/dissectors/packet-giop.h
@@ -333,10 +333,8 @@ extern gdouble get_CDR_long_double(tvbuff_t *tvb, int *offset,
* have been processed.
*/
-#ifdef G_HAVE_GINT64
extern gint64 get_CDR_long_long(tvbuff_t *tvb, int *offset,
gboolean stream_is_big_endian, int boundary);
-#endif
/*
* Decode an Object type, and display it on the tree.
@@ -435,11 +433,8 @@ extern guint32 get_CDR_ulong(tvbuff_t *tvb, int *offset,
* have been processed.
*/
-#ifdef G_HAVE_GINT64
extern guint64 get_CDR_ulong_long(tvbuff_t *tvb, int *offset,
gboolean stream_is_big_endian, int boundary);
-#endif
-
/* Copy a 2 octet sequence from the tvbuff
* which represents an unsigned short value, and convert
diff --git a/epan/libethereal.def b/epan/libethereal.def
index f5bc6a38b9..5bbb619b43 100644
--- a/epan/libethereal.def
+++ b/epan/libethereal.def
@@ -316,6 +316,7 @@ get_CDR_fixed
get_CDR_float
get_CDR_interface
get_CDR_long
+get_CDR_long_long
get_CDR_object
get_CDR_octet
get_CDR_octet_seq
@@ -323,6 +324,7 @@ get_CDR_short
get_CDR_string
get_CDR_typeCode
get_CDR_ulong
+get_CDR_ulong_long
get_CDR_ushort
get_CDR_wchar
get_CDR_wstring
diff --git a/plugins/giop/packet-parlay.c b/plugins/giop/packet-parlay.c
index baef9a670e..810c77b702 100644
--- a/plugins/giop/packet-parlay.c
+++ b/plugins/giop/packet-parlay.c
@@ -57,1640 +57,1168 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
/* Struct prototype declaration Start */
-
-
/* Struct = IDL:org/csapi/TpAddress:1.0 */
static void decode_org_csapi_TpAddress_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/TpAddressRange:1.0 */
static void decode_org_csapi_TpAddressRange_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/TpCAIElements:1.0 */
static void decode_org_csapi_TpCAIElements_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/TpChargeAdviceInfo:1.0 */
static void decode_org_csapi_TpChargeAdviceInfo_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/TpChargePerTime:1.0 */
static void decode_org_csapi_TpChargePerTime_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/TpAoCInfo:1.0 */
static void decode_org_csapi_TpAoCInfo_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/TpTimeInterval:1.0 */
static void decode_org_csapi_TpTimeInterval_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/TpStructuredAttributeValue:1.0 */
static void decode_org_csapi_TpStructuredAttributeValue_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/TpAttribute:1.0 */
static void decode_org_csapi_TpAttribute_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/fw/TpFaultStats:1.0 */
static void decode_org_csapi_fw_TpFaultStats_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/fw/TpFaultStatsRecord:1.0 */
static void decode_org_csapi_fw_TpFaultStatsRecord_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/fw/TpLoadPolicy:1.0 */
static void decode_org_csapi_fw_TpLoadPolicy_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/fw/TpLoadStatisticData:1.0 */
static void decode_org_csapi_fw_TpLoadStatisticData_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/fw/TpLoadThreshold:1.0 */
static void decode_org_csapi_fw_TpLoadThreshold_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/fw/TpLoadInitVal:1.0 */
static void decode_org_csapi_fw_TpLoadInitVal_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/fw/TpProperty:1.0 */
static void decode_org_csapi_fw_TpProperty_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/fw/TpClientAppDescription:1.0 */
static void decode_org_csapi_fw_TpClientAppDescription_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/fw/TpEntOp:1.0 */
static void decode_org_csapi_fw_TpEntOp_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/fw/TpSag:1.0 */
static void decode_org_csapi_fw_TpSag_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/fw/TpServiceProperty:1.0 */
static void decode_org_csapi_fw_TpServiceProperty_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/fw/TpServiceDescription:1.0 */
static void decode_org_csapi_fw_TpServiceDescription_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/fw/TpService:1.0 */
static void decode_org_csapi_fw_TpService_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/fw/TpServiceProfileDescription:1.0 */
static void decode_org_csapi_fw_TpServiceProfileDescription_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/fw/TpServiceTypeProperty:1.0 */
static void decode_org_csapi_fw_TpServiceTypeProperty_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/fw/TpServiceTypeDescription:1.0 */
static void decode_org_csapi_fw_TpServiceTypeDescription_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/fw/TpSignatureAndServiceMgr:1.0 */
static void decode_org_csapi_fw_TpSignatureAndServiceMgr_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/fw/TpPerson:1.0 */
static void decode_org_csapi_fw_TpPerson_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/fw/TpServiceContractDescription:1.0 */
static void decode_org_csapi_fw_TpServiceContractDescription_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/fw/TpLoadStatistic:1.0 */
static void decode_org_csapi_fw_TpLoadStatistic_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/fw/TpServiceContract:1.0 */
static void decode_org_csapi_fw_TpServiceContract_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/fw/TpServiceProfile:1.0 */
static void decode_org_csapi_fw_TpServiceProfile_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/fw/TpAuthDomain:1.0 */
static void decode_org_csapi_fw_TpAuthDomain_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/fw/TpSagProfilePair:1.0 */
static void decode_org_csapi_fw_TpSagProfilePair_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/fw/TpAddSagMembersConflict:1.0 */
static void decode_org_csapi_fw_TpAddSagMembersConflict_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/fw/TpAssignSagToServiceProfileConflict:1.0 */
static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_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/fw/TpServiceTypePropertyValue:1.0 */
static void decode_org_csapi_fw_TpServiceTypePropertyValue_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/fw/TpFwMigrationServiceAvailableInfo:1.0 */
static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_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/fw/TpFwAgreementInfo:1.0 */
static void decode_org_csapi_fw_TpFwAgreementInfo_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/TpUIMessageCriteria:1.0 */
static void decode_org_csapi_ui_TpUIMessageCriteria_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/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_);
-
-
/* Struct = IDL:org/csapi/ui/TpUIEventCriteriaResult:1.0 */
static void decode_org_csapi_ui_TpUIEventCriteriaResult_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/TpUIEventNotificationInfo:1.0 */
static void decode_org_csapi_ui_TpUIEventNotificationInfo_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/TpUIRecognitionProperty:1.0 */
static void decode_org_csapi_ui_TpUIRecognitionProperty_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/TpUIRecognitionCriteria:1.0 */
static void decode_org_csapi_ui_TpUIRecognitionCriteria_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/TpUICollectCriteria:1.0 */
static void decode_org_csapi_ui_TpUICollectCriteria_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/TpUIWordOverride:1.0 */
static void decode_org_csapi_ui_TpUIWordOverride_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/TpUISynthesisInfoData:1.0 */
static void decode_org_csapi_ui_TpUISynthesisInfoData_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/cc/TpCallError:1.0 */
static void decode_org_csapi_cc_TpCallError_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/cc/TpCallEndedReport:1.0 */
static void decode_org_csapi_cc_TpCallEndedReport_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/cc/TpCallInfoReport:1.0 */
static void decode_org_csapi_cc_TpCallInfoReport_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/cc/TpCallServiceCode:1.0 */
static void decode_org_csapi_cc_TpCallServiceCode_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/cc/TpCallTreatment:1.0 */
static void decode_org_csapi_cc_TpCallTreatment_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/cc/TpCallChargePlan:1.0 */
static void decode_org_csapi_cc_TpCallChargePlan_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/cc/gccs/TpCallEventCriteria:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEventCriteria_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/cc/gccs/TpCallEventCriteriaResult:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_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/cc/gccs/TpCallReleaseCause:1.0 */
static void decode_org_csapi_cc_gccs_TpCallReleaseCause_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/cc/gccs/TpCallReport:1.0 */
static void decode_org_csapi_cc_gccs_TpCallReport_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/cc/gccs/TpCallReportRequest:1.0 */
static void decode_org_csapi_cc_gccs_TpCallReportRequest_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/cc/gccs/TpCallEventInfo:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEventInfo_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/cc/gccs/TpCallEndedReport:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEndedReport_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/cc/gccs/TpCallInfoReport:1.0 */
static void decode_org_csapi_cc_gccs_TpCallInfoReport_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/cc/gccs/TpCallTreatment:1.0 */
static void decode_org_csapi_cc_gccs_TpCallTreatment_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/cc/gccs/TpCallIdentifier:1.0 */
static void decode_org_csapi_cc_gccs_TpCallIdentifier_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/cc/TpCallNotificationScope:1.0 */
static void decode_org_csapi_cc_TpCallNotificationScope_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/cc/TpCallNotificationReportScope:1.0 */
static void decode_org_csapi_cc_TpCallNotificationReportScope_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/cc/TpCallEventRequest:1.0 */
static void decode_org_csapi_cc_TpCallEventRequest_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/cc/TpCallNotificationRequest:1.0 */
static void decode_org_csapi_cc_TpCallNotificationRequest_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/cc/TpNotificationRequested:1.0 */
static void decode_org_csapi_cc_TpNotificationRequested_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/cc/TpCallLegConnectionProperties:1.0 */
static void decode_org_csapi_cc_TpCallLegConnectionProperties_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/cc/TpCallEventInfo:1.0 */
static void decode_org_csapi_cc_TpCallEventInfo_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/cc/TpNotificationRequestedSetEntry:1.0 */
static void decode_org_csapi_cc_TpNotificationRequestedSetEntry_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/cc/TpCarrier:1.0 */
static void decode_org_csapi_cc_TpCarrier_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/cc/TpCallNotificationInfo:1.0 */
static void decode_org_csapi_cc_TpCallNotificationInfo_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/cc/TpCallLegInfoReport:1.0 */
static void decode_org_csapi_cc_TpCallLegInfoReport_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/cc/TpCallLegProperty:1.0 */
static void decode_org_csapi_cc_TpCallLegProperty_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/cc/mpccs/TpMultiPartyCallIdentifier:1.0 */
static void decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_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/cc/mpccs/TpCallLegIdentifier:1.0 */
static void decode_org_csapi_cc_mpccs_TpCallLegIdentifier_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/cc/mpccs/TpAppCallLegCallBack:1.0 */
static void decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_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/cc/mmccs/TpCallSuperviseVolume:1.0 */
static void decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_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/cc/mmccs/TpMediaStreamRequest:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaStreamRequest_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/cc/mmccs/TpMediaStream:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaStream_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/cc/mmccs/TpNotificationMediaRequest:1.0 */
static void decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_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/cc/mmccs/TpMediaNotificationRequested:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_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/cc/mmccs/TpMultiMediaCallIdentifier:1.0 */
static void decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_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/cc/mmccs/TpMultiMediaCallLegIdentifier:1.0 */
static void decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_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/cc/mmccs/TpAppMultiMediaCallLegCallBack:1.0 */
static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_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/cc/cccs/TpMonoMediaConfPolicy:1.0 */
static void decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_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/cc/cccs/TpJoinEventInfo:1.0 */
static void decode_org_csapi_cc_cccs_TpJoinEventInfo_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/cc/cccs/TpConfSearchCriteria:1.0 */
static void decode_org_csapi_cc_cccs_TpConfSearchCriteria_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/cc/cccs/TpConfSearchResult:1.0 */
static void decode_org_csapi_cc_cccs_TpConfSearchResult_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/cc/cccs/TpMultiMediaConfPolicy:1.0 */
static void decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_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/cc/cccs/TpResourceReservation:1.0 */
static void decode_org_csapi_cc_cccs_TpResourceReservation_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/cc/cccs/TpConfCallIdentifier:1.0 */
static void decode_org_csapi_cc_cccs_TpConfCallIdentifier_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/cc/cccs/TpSubConfCallIdentifier:1.0 */
static void decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_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/TpUIIdentifier:1.0 */
static void decode_org_csapi_ui_TpUIIdentifier_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/TpUICallIdentifier:1.0 */
static void decode_org_csapi_ui_TpUICallIdentifier_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/mm/TpLocationResponseTime:1.0 */
static void decode_org_csapi_mm_TpLocationResponseTime_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/mm/TpLocationTrigger:1.0 */
static void decode_org_csapi_mm_TpLocationTrigger_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/mm/TpLocationRequest:1.0 */
static void decode_org_csapi_mm_TpLocationRequest_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/mm/TpGeographicalPosition:1.0 */
static void decode_org_csapi_mm_TpGeographicalPosition_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/mm/TpMobilityStopAssignmentData:1.0 */
static void decode_org_csapi_mm_TpMobilityStopAssignmentData_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/mm/TpUlExtendedData:1.0 */
static void decode_org_csapi_mm_TpUlExtendedData_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/mm/TpUserLocation:1.0 */
static void decode_org_csapi_mm_TpUserLocation_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/mm/TpUserLocationExtended:1.0 */
static void decode_org_csapi_mm_TpUserLocationExtended_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/mm/TpLocationTriggerCamel:1.0 */
static void decode_org_csapi_mm_TpLocationTriggerCamel_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/mm/TpUserLocationCamel:1.0 */
static void decode_org_csapi_mm_TpUserLocationCamel_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/mm/TpUserLocationEmergencyRequest:1.0 */
static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_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/mm/TpUserLocationEmergency:1.0 */
static void decode_org_csapi_mm_TpUserLocationEmergency_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/mm/TpUserStatus:1.0 */
static void decode_org_csapi_mm_TpUserStatus_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/mm/TpTriggeredStatusRequest:1.0 */
static void decode_org_csapi_mm_TpTriggeredStatusRequest_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/mm/TpTriggeredStatusRequestSetEntry:1.0 */
static void decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_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/mm/TpPeriodicLocationRequest:1.0 */
static void decode_org_csapi_mm_TpPeriodicLocationRequest_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/mm/TpPeriodicLocationRequestSetEntry:1.0 */
static void decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_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/mm/TpTriggeredLocationRequest:1.0 */
static void decode_org_csapi_mm_TpTriggeredLocationRequest_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/mm/TpTriggeredLocationRequestSetEntry:1.0 */
static void decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_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/mm/TpUserStatusIndicatorExtended:1.0 */
static void decode_org_csapi_mm_TpUserStatusIndicatorExtended_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/mm/TpUserInfo:1.0 */
static void decode_org_csapi_mm_TpUserInfo_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/mm/TpNetworkStatusIndicator:1.0 */
static void decode_org_csapi_mm_TpNetworkStatusIndicator_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/mm/TpUserStatusExtended:1.0 */
static void decode_org_csapi_mm_TpUserStatusExtended_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/mm/TpBindingNotificationCriteria:1.0 */
static void decode_org_csapi_mm_TpBindingNotificationCriteria_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/termcap/TpTerminalCapabilities:1.0 */
static void decode_org_csapi_termcap_TpTerminalCapabilities_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/termcap/TpTerminalCapabilityScope:1.0 */
static void decode_org_csapi_termcap_TpTerminalCapabilityScope_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/dsc/TpChargePerVolume:1.0 */
static void decode_org_csapi_dsc_TpChargePerVolume_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/dsc/TpDataSessionChargePlan:1.0 */
static void decode_org_csapi_dsc_TpDataSessionChargePlan_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/dsc/TpDataSessionError:1.0 */
static void decode_org_csapi_dsc_TpDataSessionError_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/dsc/TpDataSessionEventCriteria:1.0 */
static void decode_org_csapi_dsc_TpDataSessionEventCriteria_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/dsc/TpDataSessionEventInfo:1.0 */
static void decode_org_csapi_dsc_TpDataSessionEventInfo_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/dsc/TpDataSessionReleaseCause:1.0 */
static void decode_org_csapi_dsc_TpDataSessionReleaseCause_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/dsc/TpDataSessionReport:1.0 */
static void decode_org_csapi_dsc_TpDataSessionReport_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/dsc/TpDataSessionReportRequest:1.0 */
static void decode_org_csapi_dsc_TpDataSessionReportRequest_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/dsc/TpDataSessionSuperviseVolume:1.0 */
static void decode_org_csapi_dsc_TpDataSessionSuperviseVolume_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/dsc/TpDataSessionEventCriteriaResult:1.0 */
static void decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_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/dsc/TpDataSessionIdentifier:1.0 */
static void decode_org_csapi_dsc_TpDataSessionIdentifier_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/gms/TpGMSNewMessageArrivedInfo:1.0 */
static void decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_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/gms/TpGMSNewMessageArrivedCriteria:1.0 */
static void decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_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/gms/TpMailboxIdentifier:1.0 */
static void decode_org_csapi_gms_TpMailboxIdentifier_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/gms/TpMailboxFolderIdentifier:1.0 */
static void decode_org_csapi_gms_TpMailboxFolderIdentifier_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/cm/TpNameDescrpTagTimePeriod:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagTimePeriod_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/cm/TpNameDescrpTagTimeOfDay:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_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/cm/TpNameDescrpTagString:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagString_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/cm/TpNameDescrpTagMonth:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagMonth_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/cm/TpNameDescrpTagInt:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagInt_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/cm/TpNameDescrpTagDir:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagDir_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/cm/TpNameDescrpTagDayOfWeek:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_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/cm/TpNameDescrpTagDateTime:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagDateTime_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/cm/TpLossDescriptor:1.0 */
static void decode_org_csapi_cm_TpLossDescriptor_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/cm/TpLoadDescriptor:1.0 */
static void decode_org_csapi_cm_TpLoadDescriptor_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/cm/TpJitterDescriptor:1.0 */
static void decode_org_csapi_cm_TpJitterDescriptor_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/cm/TpEndpoint:1.0 */
static void decode_org_csapi_cm_TpEndpoint_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/cm/TpDelayDescriptor:1.0 */
static void decode_org_csapi_cm_TpDelayDescriptor_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/cm/TpNameDescrpTagExcessLoadAction:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_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/cm/TpValidityInfo:1.0 */
static void decode_org_csapi_cm_TpValidityInfo_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/cm/TpProvisionedQoSInfo:1.0 */
static void decode_org_csapi_cm_TpProvisionedQoSInfo_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/cm/TpPipeQoSInfo:1.0 */
static void decode_org_csapi_cm_TpPipeQoSInfo_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/cm/TpDsCodepoint:1.0 */
static void decode_org_csapi_cm_TpDsCodepoint_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/cm/TpIPSubnet:1.0 */
static void decode_org_csapi_cm_TpIPSubnet_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/am/TpBalanceInfo:1.0 */
static void decode_org_csapi_am_TpBalanceInfo_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/am/TpChargingEventInfo:1.0 */
static void decode_org_csapi_am_TpChargingEventInfo_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/am/TpBalance:1.0 */
static void decode_org_csapi_am_TpBalance_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/am/TpTransactionHistory:1.0 */
static void decode_org_csapi_am_TpTransactionHistory_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/am/TpChargingEventCriteria:1.0 */
static void decode_org_csapi_am_TpChargingEventCriteria_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/am/TpChargingEventCriteriaResult:1.0 */
static void decode_org_csapi_am_TpChargingEventCriteriaResult_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/am/TpBalanceExpiryDate:1.0 */
static void decode_org_csapi_am_TpBalanceExpiryDate_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/am/TpVoucher:1.0 */
static void decode_org_csapi_am_TpVoucher_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/cs/TpMerchantAccountID:1.0 */
static void decode_org_csapi_cs_TpMerchantAccountID_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/cs/TpCorrelationID:1.0 */
static void decode_org_csapi_cs_TpCorrelationID_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/cs/TpAmount:1.0 */
static void decode_org_csapi_cs_TpAmount_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/cs/TpChargingPrice:1.0 */
static void decode_org_csapi_cs_TpChargingPrice_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/cs/TpVolume:1.0 */
static void decode_org_csapi_cs_TpVolume_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/cs/TpChargingSessionID:1.0 */
static void decode_org_csapi_cs_TpChargingSessionID_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/cs/TpPriceVolume:1.0 */
static void decode_org_csapi_cs_TpPriceVolume_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/cs/TpApplicationDescription:1.0 */
static void decode_org_csapi_cs_TpApplicationDescription_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/cs/TpChargingParameter:1.0 */
static void decode_org_csapi_cs_TpChargingParameter_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/policy/TpPolicyEvent:1.0 */
static void decode_org_csapi_policy_TpPolicyEvent_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/policy/TpPolicyNameValue:1.0 */
static void decode_org_csapi_policy_TpPolicyNameValue_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/policy/TpPolicyType/TpPolicyRecordType:1.0 */
static void decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_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/policy/TpPolicyType/TpPolicyListType:1.0 */
static void decode_org_csapi_policy_TpPolicyType_TpPolicyListType_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/policy/TpPolicyVar:1.0 */
static void decode_org_csapi_policy_TpPolicyVar_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/policy/TpPolicyConditionListElement:1.0 */
static void decode_org_csapi_policy_TpPolicyConditionListElement_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/policy/TpPolicyActionListElement:1.0 */
static void decode_org_csapi_policy_TpPolicyActionListElement_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/pam/TpPAMAttributeDef:1.0 */
static void decode_org_csapi_pam_TpPAMAttributeDef_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/pam/TpPAMAttribute:1.0 */
static void decode_org_csapi_pam_TpPAMAttribute_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/pam/TpPAMPresenceData:1.0 */
static void decode_org_csapi_pam_TpPAMPresenceData_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/pam/TpPAMAvailabilityProfile:1.0 */
static void decode_org_csapi_pam_TpPAMAvailabilityProfile_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/pam/TpPAMCommunicationContext:1.0 */
static void decode_org_csapi_pam_TpPAMCommunicationContext_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/pam/TpPAMContext:1.0 */
static void decode_org_csapi_pam_TpPAMContext_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/pam/TpPAMAccessControlData:1.0 */
static void decode_org_csapi_pam_TpPAMAccessControlData_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/pam/TpPAMICEventData:1.0 */
static void decode_org_csapi_pam_TpPAMICEventData_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/pam/TpPAMICNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMICNotificationData_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/pam/TpPAMIDEventData:1.0 */
static void decode_org_csapi_pam_TpPAMIDEventData_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/pam/TpPAMIDNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMIDNotificationData_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/pam/TpPAMGMCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMGMCEventData_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/pam/TpPAMGMCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMGMCNotificationData_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/pam/TpPAMACEventData:1.0 */
static void decode_org_csapi_pam_TpPAMACEventData_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/pam/TpPAMACNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMACNotificationData_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/pam/TpPAMADEventData:1.0 */
static void decode_org_csapi_pam_TpPAMADEventData_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/pam/TpPAMADNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMADNotificationData_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/pam/TpPAMAAEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAAEventData_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/pam/TpPAMAANotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAANotificationData_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/pam/TpPAMAUEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAUEventData_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/pam/TpPAMAUNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAUNotificationData_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/pam/TpPAMCCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMCCEventData_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/pam/TpPAMCCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMCCNotificationData_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/pam/TpPAMACPSEventData:1.0 */
static void decode_org_csapi_pam_TpPAMACPSEventData_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/pam/TpPAMACPSNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMACPSNotificationData_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/pam/TpPAMAPSEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAPSEventData_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/pam/TpPAMAPSNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAPSNotificationData_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/pam/TpPAMIPSEventData:1.0 */
static void decode_org_csapi_pam_TpPAMIPSEventData_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/pam/TpPAMIPSNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMIPSNotificationData_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/pam/TpPAMAVCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAVCEventData_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/pam/TpPAMAVCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAVCNotificationData_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/pam/TpPAMWCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMWCEventData_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/pam/TpPAMWCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMWCNotificationData_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/pam/TpPAMErrorInfo:1.0 */
static void decode_org_csapi_pam_TpPAMErrorInfo_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/mmm/TpMailboxIdentifier:1.0 */
static void decode_org_csapi_mmm_TpMailboxIdentifier_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/mmm/TpMultiMediaMessagingIdentifier:1.0 */
static void decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_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/mmm/TpListMessagesCriteria:1.0 */
static void decode_org_csapi_mmm_TpListMessagesCriteria_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/mmm/TpMailboxFolderStatusInformation:1.0 */
static void decode_org_csapi_mmm_TpMailboxFolderStatusInformation_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/mmm/TpMessageDescription:1.0 */
static void decode_org_csapi_mmm_TpMessageDescription_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/mmm/TpBodyPartDescription:1.0 */
static void decode_org_csapi_mmm_TpBodyPartDescription_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/mmm/TpBodyPart:1.0 */
static void decode_org_csapi_mmm_TpBodyPart_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/mmm/TpGenericHeaderField:1.0 */
static void decode_org_csapi_mmm_TpGenericHeaderField_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/mmm/TpMessageInfoPropertyError:1.0 */
static void decode_org_csapi_mmm_TpMessageInfoPropertyError_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/mmm/TpNewMailboxMessageArrivedCriteria:1.0 */
static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_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/mmm/TpNewMailboxMessageArrivedInfo:1.0 */
static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_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/mmm/TpQueryStatusReport:1.0 */
static void decode_org_csapi_mmm_TpQueryStatusReport_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/mmm/TpTerminatingAddressList:1.0 */
static void decode_org_csapi_mmm_TpTerminatingAddressList_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/mmm/TpNewMessageArrivedCriteria:1.0 */
static void decode_org_csapi_mmm_TpNewMessageArrivedCriteria_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/mmm/TpMessagingNotificationRequested:1.0 */
static void decode_org_csapi_mmm_TpMessagingNotificationRequested_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/mmm/TpMessagingNotificationRequestedSetEntry:1.0 */
static void decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_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/mmm/TpNewMessageArrivedInfo:1.0 */
static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_);
-
/* Struct prototype declaration End */
-
/* Union prototype declaration Start */
-
/* Union = IDL:org/csapi/TpAoCOrder:1.0 */
static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_);
@@ -2051,23 +1579,19 @@ static int proto_parlay = -1;
static gint ett_parlay = -1;
-
/* Initialise the initial Alignment */
static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */
-
/* Initialise the Registered fields */
/* TODO - Use registered fields */
-
/*
* IDL Operations Start
*/
-
static const char org_csapi_IpService_setCallback_op[] = "setCallback" ;
static const char org_csapi_IpService_setCallbackWithSessionID_op[] = "setCallbackWithSessionID" ;
@@ -3007,81 +2531,60 @@ static const char org_csapi_mmm_IpMultiMediaMessaging_close_op[] = "close" ;
* IDL Operations End
*/
-
/* Begin Exception (containing members) String Declare */
-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_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_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_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_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_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_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_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_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_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_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" ;
+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_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_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_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_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_policy_P_TRANSACTION_IN_PROCESS[] = "IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS: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_cm_P_UNKNOWN_STATUS[] = "IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0" ;
@@ -3113,81 +2616,96 @@ static const char user_exception_org_csapi_cm_P_UNKNOWN_IPSUBNET[] = "IDL:org/cs
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_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_policy_P_TRANSACTION_IN_PROCESS[] = "IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS: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" ;
+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_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_termcap_P_INVALID_TERMINAL_ID[] = "IDL:org/csapi/termcap/P_INVALID_TERMINAL_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_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_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_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_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_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_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_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM[] = "IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM: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_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_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" ;
/* End Exception (containing members) String Declare */
-
/*
* IDL Attributes Start
*/
-
/*
* IDL Attributes End
*/
-
/*
* IDL Enums Start
*/
-
/*
* Enum = IDL:org/csapi/TpAddressError:1.0
*/
-
static const value_string org_csapi_TpAddressError[] = {
@@ -3200,11 +2718,9 @@ static const value_string org_csapi_TpAddressError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpAddressPlan:1.0
*/
-
static const value_string org_csapi_TpAddressPlan[] = {
@@ -3226,11 +2742,9 @@ static const value_string org_csapi_TpAddressPlan[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpAddressPresentation:1.0
*/
-
static const value_string org_csapi_TpAddressPresentation[] = {
@@ -3241,11 +2755,9 @@ static const value_string org_csapi_TpAddressPresentation[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpAddressScreening:1.0
*/
-
static const value_string org_csapi_TpAddressScreening[] = {
@@ -3257,11 +2769,9 @@ static const value_string org_csapi_TpAddressScreening[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpCallAoCOrderCategory:1.0
*/
-
static const value_string org_csapi_TpCallAoCOrderCategory[] = {
@@ -3271,11 +2781,9 @@ static const value_string org_csapi_TpCallAoCOrderCategory[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpDataSessionQosClass:1.0
*/
-
static const value_string org_csapi_TpDataSessionQosClass[] = {
@@ -3286,11 +2794,9 @@ static const value_string org_csapi_TpDataSessionQosClass[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpSimpleAttributeTypeInfo:1.0
*/
-
static const value_string org_csapi_TpSimpleAttributeTypeInfo[] = {
@@ -3311,11 +2817,9 @@ static const value_string org_csapi_TpSimpleAttributeTypeInfo[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/TpAttributeTagInfo:1.0
*/
-
static const value_string org_csapi_TpAttributeTagInfo[] = {
@@ -3325,11 +2829,9 @@ static const value_string org_csapi_TpAttributeTagInfo[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpAPIUnavailReason:1.0
*/
-
static const value_string org_csapi_fw_TpAPIUnavailReason[] = {
@@ -3342,11 +2844,9 @@ static const value_string org_csapi_fw_TpAPIUnavailReason[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpDomainIDType:1.0
*/
-
static const value_string org_csapi_fw_TpDomainIDType[] = {
@@ -3358,11 +2858,9 @@ static const value_string org_csapi_fw_TpDomainIDType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpFwEventName:1.0
*/
-
static const value_string org_csapi_fw_TpFwEventName[] = {
@@ -3377,11 +2875,9 @@ static const value_string org_csapi_fw_TpFwEventName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpFWExceptionType:1.0
*/
-
static const value_string org_csapi_fw_TpFWExceptionType[] = {
@@ -3389,11 +2885,9 @@ static const value_string org_csapi_fw_TpFWExceptionType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpFwUnavailReason:1.0
*/
-
static const value_string org_csapi_fw_TpFwUnavailReason[] = {
@@ -3406,11 +2900,9 @@ static const value_string org_csapi_fw_TpFwUnavailReason[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpInterfaceFault:1.0
*/
-
static const value_string org_csapi_fw_TpInterfaceFault[] = {
@@ -3421,11 +2913,9 @@ static const value_string org_csapi_fw_TpInterfaceFault[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpLoadLevel:1.0
*/
-
static const value_string org_csapi_fw_TpLoadLevel[] = {
@@ -3435,11 +2925,9 @@ static const value_string org_csapi_fw_TpLoadLevel[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpLoadStatisticEntityType:1.0
*/
-
static const value_string org_csapi_fw_TpLoadStatisticEntityType[] = {
@@ -3449,11 +2937,9 @@ static const value_string org_csapi_fw_TpLoadStatisticEntityType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpLoadStatisticInfoType:1.0
*/
-
static const value_string org_csapi_fw_TpLoadStatisticInfoType[] = {
@@ -3462,11 +2948,9 @@ static const value_string org_csapi_fw_TpLoadStatisticInfoType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpLoadStatusError:1.0
*/
-
static const value_string org_csapi_fw_TpLoadStatusError[] = {
@@ -3475,11 +2959,9 @@ static const value_string org_csapi_fw_TpLoadStatusError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpServiceTypePropertyMode:1.0
*/
-
static const value_string org_csapi_fw_TpServiceTypePropertyMode[] = {
@@ -3490,11 +2972,9 @@ static const value_string org_csapi_fw_TpServiceTypePropertyMode[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpSvcUnavailReason:1.0
*/
-
static const value_string org_csapi_fw_TpSvcUnavailReason[] = {
@@ -3506,11 +2986,9 @@ static const value_string org_csapi_fw_TpSvcUnavailReason[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpLoadStatisticError:1.0
*/
-
static const value_string org_csapi_fw_TpLoadStatisticError[] = {
@@ -3519,11 +2997,9 @@ static const value_string org_csapi_fw_TpLoadStatisticError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpSubjectType:1.0
*/
-
static const value_string org_csapi_fw_TpSubjectType[] = {
@@ -3533,11 +3009,9 @@ static const value_string org_csapi_fw_TpSubjectType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpFaultStatisticsError:1.0
*/
-
static const value_string org_csapi_fw_TpFaultStatisticsError[] = {
@@ -3546,11 +3020,9 @@ static const value_string org_csapi_fw_TpFaultStatisticsError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpSvcAvailStatusReason:1.0
*/
-
static const value_string org_csapi_fw_TpSvcAvailStatusReason[] = {
@@ -3565,11 +3037,9 @@ static const value_string org_csapi_fw_TpSvcAvailStatusReason[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpAppAvailStatusReason:1.0
*/
-
static const value_string org_csapi_fw_TpAppAvailStatusReason[] = {
@@ -3584,11 +3054,9 @@ static const value_string org_csapi_fw_TpAppAvailStatusReason[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpMigrationAdditionalInfoType:1.0
*/
-
static const value_string org_csapi_fw_TpMigrationAdditionalInfoType[] = {
@@ -3596,11 +3064,9 @@ static const value_string org_csapi_fw_TpMigrationAdditionalInfoType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/fw/TpFwAvailStatusReason:1.0
*/
-
static const value_string org_csapi_fw_TpFwAvailStatusReason[] = {
@@ -3615,11 +3081,9 @@ static const value_string org_csapi_fw_TpFwAvailStatusReason[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIVariablePartType:1.0
*/
-
static const value_string org_csapi_ui_TpUIVariablePartType[] = {
@@ -3631,11 +3095,9 @@ static const value_string org_csapi_ui_TpUIVariablePartType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIReport:1.0
*/
-
static const value_string org_csapi_ui_TpUIReport[] = {
@@ -3651,11 +3113,9 @@ static const value_string org_csapi_ui_TpUIReport[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIInfoType:1.0
*/
-
static const value_string org_csapi_ui_TpUIInfoType[] = {
@@ -3672,11 +3132,9 @@ static const value_string org_csapi_ui_TpUIInfoType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIFault:1.0
*/
-
static const value_string org_csapi_ui_TpUIFault[] = {
@@ -3685,11 +3143,9 @@ static const value_string org_csapi_ui_TpUIFault[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIEventInfoDataType:1.0
*/
-
static const value_string org_csapi_ui_TpUIEventInfoDataType[] = {
@@ -3700,11 +3156,9 @@ static const value_string org_csapi_ui_TpUIEventInfoDataType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIError:1.0
*/
-
static const value_string org_csapi_ui_TpUIError[] = {
@@ -3721,11 +3175,9 @@ static const value_string org_csapi_ui_TpUIError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUICollectMode:1.0
*/
-
static const value_string org_csapi_ui_TpUICollectMode[] = {
@@ -3735,11 +3187,9 @@ static const value_string org_csapi_ui_TpUICollectMode[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUIPronounceType:1.0
*/
-
static const value_string org_csapi_ui_TpUIPronounceType[] = {
@@ -3748,11 +3198,9 @@ static const value_string org_csapi_ui_TpUIPronounceType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUISynthesisRange:1.0
*/
-
static const value_string org_csapi_ui_TpUISynthesisRange[] = {
@@ -3764,11 +3212,9 @@ static const value_string org_csapi_ui_TpUISynthesisRange[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUISynthesisRate:1.0
*/
-
static const value_string org_csapi_ui_TpUISynthesisRate[] = {
@@ -3778,11 +3224,9 @@ static const value_string org_csapi_ui_TpUISynthesisRate[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUISynthesisAge:1.0
*/
-
static const value_string org_csapi_ui_TpUISynthesisAge[] = {
@@ -3793,11 +3237,9 @@ static const value_string org_csapi_ui_TpUISynthesisAge[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUISynthesisGender:1.0
*/
-
static const value_string org_csapi_ui_TpUISynthesisGender[] = {
@@ -3806,11 +3248,9 @@ static const value_string org_csapi_ui_TpUISynthesisGender[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpReleaseCause:1.0
*/
-
static const value_string org_csapi_cc_TpReleaseCause[] = {
@@ -3830,11 +3270,9 @@ static const value_string org_csapi_cc_TpReleaseCause[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallMonitorMode:1.0
*/
-
static const value_string org_csapi_cc_TpCallMonitorMode[] = {
@@ -3844,11 +3282,9 @@ static const value_string org_csapi_cc_TpCallMonitorMode[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallBearerService:1.0
*/
-
static const value_string org_csapi_cc_TpCallBearerService[] = {
@@ -3862,11 +3298,9 @@ static const value_string org_csapi_cc_TpCallBearerService[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallChargeOrderCategory:1.0
*/
-
static const value_string org_csapi_cc_TpCallChargeOrderCategory[] = {
@@ -3875,11 +3309,9 @@ static const value_string org_csapi_cc_TpCallChargeOrderCategory[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallErrorType:1.0
*/
-
static const value_string org_csapi_cc_TpCallErrorType[] = {
@@ -3890,11 +3322,9 @@ static const value_string org_csapi_cc_TpCallErrorType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallLoadControlMechanismType:1.0
*/
-
static const value_string org_csapi_cc_TpCallLoadControlMechanismType[] = {
@@ -3902,11 +3332,9 @@ static const value_string org_csapi_cc_TpCallLoadControlMechanismType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallNetworkAccessType:1.0
*/
-
static const value_string org_csapi_cc_TpCallNetworkAccessType[] = {
@@ -3919,11 +3347,9 @@ static const value_string org_csapi_cc_TpCallNetworkAccessType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallPartyCategory:1.0
*/
-
static const value_string org_csapi_cc_TpCallPartyCategory[] = {
@@ -3941,11 +3367,9 @@ static const value_string org_csapi_cc_TpCallPartyCategory[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallServiceCodeType:1.0
*/
-
static const value_string org_csapi_cc_TpCallServiceCodeType[] = {
@@ -3958,11 +3382,9 @@ static const value_string org_csapi_cc_TpCallServiceCodeType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallTeleService:1.0
*/
-
static const value_string org_csapi_cc_TpCallTeleService[] = {
@@ -3996,11 +3418,9 @@ static const value_string org_csapi_cc_TpCallTeleService[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallTreatmentType:1.0
*/
-
static const value_string org_csapi_cc_TpCallTreatmentType[] = {
@@ -4010,11 +3430,9 @@ static const value_string org_csapi_cc_TpCallTreatmentType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallPartyToChargeType:1.0
*/
-
static const value_string org_csapi_cc_TpCallPartyToChargeType[] = {
@@ -4024,11 +3442,9 @@ static const value_string org_csapi_cc_TpCallPartyToChargeType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/gccs/TpCallNotificationType:1.0
*/
-
static const value_string org_csapi_cc_gccs_TpCallNotificationType[] = {
@@ -4037,11 +3453,9 @@ static const value_string org_csapi_cc_gccs_TpCallNotificationType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/gccs/TpCallAppInfoType:1.0
*/
-
static const value_string org_csapi_cc_gccs_TpCallAppInfoType[] = {
@@ -4057,11 +3471,9 @@ static const value_string org_csapi_cc_gccs_TpCallAppInfoType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/gccs/TpCallReportType:1.0
*/
-
static const value_string org_csapi_cc_gccs_TpCallReportType[] = {
@@ -4080,11 +3492,9 @@ static const value_string org_csapi_cc_gccs_TpCallReportType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/gccs/TpCallFault:1.0
*/
-
static const value_string org_csapi_cc_gccs_TpCallFault[] = {
@@ -4094,11 +3504,9 @@ static const value_string org_csapi_cc_gccs_TpCallFault[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallAppInfoType:1.0
*/
-
static const value_string org_csapi_cc_TpCallAppInfoType[] = {
@@ -4118,11 +3526,9 @@ static const value_string org_csapi_cc_TpCallAppInfoType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallEventType:1.0
*/
-
static const value_string org_csapi_cc_TpCallEventType[] = {
@@ -4144,11 +3550,9 @@ static const value_string org_csapi_cc_TpCallEventType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCallLegAttachMechanism:1.0
*/
-
static const value_string org_csapi_cc_TpCallLegAttachMechanism[] = {
@@ -4157,11 +3561,9 @@ static const value_string org_csapi_cc_TpCallLegAttachMechanism[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/TpCarrierSelectionField:1.0
*/
-
static const value_string org_csapi_cc_TpCarrierSelectionField[] = {
@@ -4173,11 +3575,9 @@ static const value_string org_csapi_cc_TpCarrierSelectionField[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/mpccs/TpAppMultiPartyCallBackRefType:1.0
*/
-
static const value_string org_csapi_cc_mpccs_TpAppMultiPartyCallBackRefType[] = {
@@ -4188,11 +3588,9 @@ static const value_string org_csapi_cc_mpccs_TpAppMultiPartyCallBackRefType[] =
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/mmccs/TpMediaStreamDirection:1.0
*/
-
static const value_string org_csapi_cc_mmccs_TpMediaStreamDirection[] = {
@@ -4202,11 +3600,9 @@ static const value_string org_csapi_cc_mmccs_TpMediaStreamDirection[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/mmccs/TpMediaStreamEventType:1.0
*/
-
static const value_string org_csapi_cc_mmccs_TpMediaStreamEventType[] = {
@@ -4216,11 +3612,9 @@ static const value_string org_csapi_cc_mmccs_TpMediaStreamEventType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/mmccs/TpMediaStreamDataTypeRequestType:1.0
*/
-
static const value_string org_csapi_cc_mmccs_TpMediaStreamDataTypeRequestType[] = {
@@ -4230,11 +3624,9 @@ static const value_string org_csapi_cc_mmccs_TpMediaStreamDataTypeRequestType[]
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallBackRefType:1.0
*/
-
static const value_string org_csapi_cc_mmccs_TpAppMultiMediaCallBackRefType[] = {
@@ -4245,11 +3637,9 @@ static const value_string org_csapi_cc_mmccs_TpAppMultiMediaCallBackRefType[] =
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/cccs/TpConfPolicyType:1.0
*/
-
static const value_string org_csapi_cc_cccs_TpConfPolicyType[] = {
@@ -4259,11 +3649,9 @@ static const value_string org_csapi_cc_cccs_TpConfPolicyType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cc/cccs/TpVideoHandlingType:1.0
*/
-
static const value_string org_csapi_cc_cccs_TpVideoHandlingType[] = {
@@ -4273,11 +3661,9 @@ static const value_string org_csapi_cc_cccs_TpVideoHandlingType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/ui/TpUITargetObjectType:1.0
*/
-
static const value_string org_csapi_ui_TpUITargetObjectType[] = {
@@ -4287,11 +3673,9 @@ static const value_string org_csapi_ui_TpUITargetObjectType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpLocationPriority:1.0
*/
-
static const value_string org_csapi_mm_TpLocationPriority[] = {
@@ -4300,11 +3684,9 @@ static const value_string org_csapi_mm_TpLocationPriority[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpLocationResponseIndicator:1.0
*/
-
static const value_string org_csapi_mm_TpLocationResponseIndicator[] = {
@@ -4315,11 +3697,9 @@ static const value_string org_csapi_mm_TpLocationResponseIndicator[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpLocationTriggerCriteria:1.0
*/
-
static const value_string org_csapi_mm_TpLocationTriggerCriteria[] = {
@@ -4328,11 +3708,9 @@ static const value_string org_csapi_mm_TpLocationTriggerCriteria[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpLocationType:1.0
*/
-
static const value_string org_csapi_mm_TpLocationType[] = {
@@ -4342,11 +3720,9 @@ static const value_string org_csapi_mm_TpLocationType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpLocationUncertaintyShape:1.0
*/
-
static const value_string org_csapi_mm_TpLocationUncertaintyShape[] = {
@@ -4360,11 +3736,9 @@ static const value_string org_csapi_mm_TpLocationUncertaintyShape[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpMobilityDiagnostic:1.0
*/
-
static const value_string org_csapi_mm_TpMobilityDiagnostic[] = {
@@ -4383,11 +3757,9 @@ static const value_string org_csapi_mm_TpMobilityDiagnostic[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpMobilityError:1.0
*/
-
static const value_string org_csapi_mm_TpMobilityError[] = {
@@ -4401,11 +3773,9 @@ static const value_string org_csapi_mm_TpMobilityError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpMobilityStopScope:1.0
*/
-
static const value_string org_csapi_mm_TpMobilityStopScope[] = {
@@ -4414,11 +3784,9 @@ static const value_string org_csapi_mm_TpMobilityStopScope[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpTerminalType:1.0
*/
-
static const value_string org_csapi_mm_TpTerminalType[] = {
@@ -4428,11 +3796,9 @@ static const value_string org_csapi_mm_TpTerminalType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpUserLocationEmergencyTrigger:1.0
*/
-
static const value_string org_csapi_mm_TpUserLocationEmergencyTrigger[] = {
@@ -4442,11 +3808,9 @@ static const value_string org_csapi_mm_TpUserLocationEmergencyTrigger[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpUserStatusIndicator:1.0
*/
-
static const value_string org_csapi_mm_TpUserStatusIndicator[] = {
@@ -4456,11 +3820,9 @@ static const value_string org_csapi_mm_TpUserStatusIndicator[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpAuthStatusIndicator:1.0
*/
-
static const value_string org_csapi_mm_TpAuthStatusIndicator[] = {
@@ -4470,11 +3832,9 @@ static const value_string org_csapi_mm_TpAuthStatusIndicator[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpAccessTechnology:1.0
*/
-
static const value_string org_csapi_mm_TpAccessTechnology[] = {
@@ -4484,11 +3844,9 @@ static const value_string org_csapi_mm_TpAccessTechnology[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpRoamingStatus:1.0
*/
-
static const value_string org_csapi_mm_TpRoamingStatus[] = {
@@ -4500,11 +3858,9 @@ static const value_string org_csapi_mm_TpRoamingStatus[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mm/TpBindingEntryType:1.0
*/
-
static const value_string org_csapi_mm_TpBindingEntryType[] = {
@@ -4515,11 +3871,9 @@ static const value_string org_csapi_mm_TpBindingEntryType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/termcap/TpTerminalCapabilitiesError:1.0
*/
-
static const value_string org_csapi_termcap_TpTerminalCapabilitiesError[] = {
@@ -4530,11 +3884,9 @@ static const value_string org_csapi_termcap_TpTerminalCapabilitiesError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/termcap/TpTerminalCapabilityScopeType:1.0
*/
-
static const value_string org_csapi_termcap_TpTerminalCapabilityScopeType[] = {
@@ -4543,11 +3895,9 @@ static const value_string org_csapi_termcap_TpTerminalCapabilityScopeType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/dsc/TpDataSessionChargeOrderCategory:1.0
*/
-
static const value_string org_csapi_dsc_TpDataSessionChargeOrderCategory[] = {
@@ -4556,11 +3906,9 @@ static const value_string org_csapi_dsc_TpDataSessionChargeOrderCategory[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/dsc/TpDataSessionErrorType:1.0
*/
-
static const value_string org_csapi_dsc_TpDataSessionErrorType[] = {
@@ -4570,11 +3918,9 @@ static const value_string org_csapi_dsc_TpDataSessionErrorType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/dsc/TpDataSessionFault:1.0
*/
-
static const value_string org_csapi_dsc_TpDataSessionFault[] = {
@@ -4585,11 +3931,9 @@ static const value_string org_csapi_dsc_TpDataSessionFault[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/dsc/TpDataSessionMonitorMode:1.0
*/
-
static const value_string org_csapi_dsc_TpDataSessionMonitorMode[] = {
@@ -4599,11 +3943,9 @@ static const value_string org_csapi_dsc_TpDataSessionMonitorMode[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/dsc/TpDataSessionReportType:1.0
*/
-
static const value_string org_csapi_dsc_TpDataSessionReportType[] = {
@@ -4613,11 +3955,9 @@ static const value_string org_csapi_dsc_TpDataSessionReportType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMessagingFault:1.0
*/
-
static const value_string org_csapi_gms_TpMessagingFault[] = {
@@ -4625,11 +3965,9 @@ static const value_string org_csapi_gms_TpMessagingFault[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMessagingEventName:1.0
*/
-
static const value_string org_csapi_gms_TpMessagingEventName[] = {
@@ -4638,11 +3976,9 @@ static const value_string org_csapi_gms_TpMessagingEventName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMessageStatus:1.0
*/
-
static const value_string org_csapi_gms_TpMessageStatus[] = {
@@ -4658,11 +3994,9 @@ static const value_string org_csapi_gms_TpMessageStatus[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMessagePriority:1.0
*/
-
static const value_string org_csapi_gms_TpMessagePriority[] = {
@@ -4672,11 +4006,9 @@ static const value_string org_csapi_gms_TpMessagePriority[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMessageInfoPropertyName:1.0
*/
-
static const value_string org_csapi_gms_TpMessageInfoPropertyName[] = {
@@ -4698,11 +4030,9 @@ static const value_string org_csapi_gms_TpMessageInfoPropertyName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMessageFormat:1.0
*/
-
static const value_string org_csapi_gms_TpMessageFormat[] = {
@@ -4716,11 +4046,9 @@ static const value_string org_csapi_gms_TpMessageFormat[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpMailboxInfoPropertyName:1.0
*/
-
static const value_string org_csapi_gms_TpMailboxInfoPropertyName[] = {
@@ -4733,11 +4061,9 @@ static const value_string org_csapi_gms_TpMailboxInfoPropertyName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/gms/TpFolderInfoPropertyName:1.0
*/
-
static const value_string org_csapi_gms_TpFolderInfoPropertyName[] = {
@@ -4750,11 +4076,9 @@ static const value_string org_csapi_gms_TpFolderInfoPropertyName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpTrafficDirection:1.0
*/
-
static const value_string org_csapi_cm_TpTrafficDirection[] = {
@@ -4763,11 +4087,9 @@ static const value_string org_csapi_cm_TpTrafficDirection[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpTagValue:1.0
*/
-
static const value_string org_csapi_cm_TpTagValue[] = {
@@ -4777,11 +4099,9 @@ static const value_string org_csapi_cm_TpTagValue[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpSiteOrSap:1.0
*/
-
static const value_string org_csapi_cm_TpSiteOrSap[] = {
@@ -4790,11 +4110,9 @@ static const value_string org_csapi_cm_TpSiteOrSap[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpIPVersion:1.0
*/
-
static const value_string org_csapi_cm_TpIPVersion[] = {
@@ -4804,11 +4122,9 @@ static const value_string org_csapi_cm_TpIPVersion[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpIPv4AddType:1.0
*/
-
static const value_string org_csapi_cm_TpIPv4AddType[] = {
@@ -4820,11 +4136,9 @@ static const value_string org_csapi_cm_TpIPv4AddType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpAction:1.0
*/
-
static const value_string org_csapi_cm_TpAction[] = {
@@ -4835,11 +4149,9 @@ static const value_string org_csapi_cm_TpAction[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cm/TpVprpStatus:1.0
*/
-
static const value_string org_csapi_cm_TpVprpStatus[] = {
@@ -4849,11 +4161,9 @@ static const value_string org_csapi_cm_TpVprpStatus[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/am/TpChargingEventName:1.0
*/
-
static const value_string org_csapi_am_TpChargingEventName[] = {
@@ -4865,11 +4175,9 @@ static const value_string org_csapi_am_TpChargingEventName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/am/TpBalanceQueryError:1.0
*/
-
static const value_string org_csapi_am_TpBalanceQueryError[] = {
@@ -4881,11 +4189,9 @@ static const value_string org_csapi_am_TpBalanceQueryError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/am/TpTransactionHistoryStatus:1.0
*/
-
static const value_string org_csapi_am_TpTransactionHistoryStatus[] = {
@@ -4898,11 +4204,9 @@ static const value_string org_csapi_am_TpTransactionHistoryStatus[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/am/TpVoucherError:1.0
*/
-
static const value_string org_csapi_am_TpVoucherError[] = {
@@ -4914,11 +4218,9 @@ static const value_string org_csapi_am_TpVoucherError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cs/TpChargingParameterValueType:1.0
*/
-
static const value_string org_csapi_cs_TpChargingParameterValueType[] = {
@@ -4930,11 +4232,9 @@ static const value_string org_csapi_cs_TpChargingParameterValueType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cs/TpChargingError:1.0
*/
-
static const value_string org_csapi_cs_TpChargingError[] = {
@@ -4952,11 +4252,9 @@ static const value_string org_csapi_cs_TpChargingError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cs/TpSessionEndedCause:1.0
*/
-
static const value_string org_csapi_cs_TpSessionEndedCause[] = {
@@ -4965,11 +4263,9 @@ static const value_string org_csapi_cs_TpSessionEndedCause[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/cs/TpAppInformationType:1.0
*/
-
static const value_string org_csapi_cs_TpAppInformationType[] = {
@@ -4977,11 +4273,9 @@ static const value_string org_csapi_cs_TpAppInformationType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/policy/TpPolicyConditionListType:1.0
*/
-
static const value_string org_csapi_policy_TpPolicyConditionListType[] = {
@@ -4990,11 +4284,9 @@ static const value_string org_csapi_policy_TpPolicyConditionListType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/policy/TpPolicyConditionType:1.0
*/
-
static const value_string org_csapi_policy_TpPolicyConditionType[] = {
@@ -5004,11 +4296,9 @@ static const value_string org_csapi_policy_TpPolicyConditionType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/policy/TpPolicyActionType:1.0
*/
-
static const value_string org_csapi_policy_TpPolicyActionType[] = {
@@ -5017,11 +4307,9 @@ static const value_string org_csapi_policy_TpPolicyActionType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/policy/TpPolicyTypeInfo:1.0
*/
-
static const value_string org_csapi_policy_TpPolicyTypeInfo[] = {
@@ -5033,11 +4321,9 @@ static const value_string org_csapi_policy_TpPolicyTypeInfo[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/pam/TpPAMContextName:1.0
*/
-
static const value_string org_csapi_pam_TpPAMContextName[] = {
@@ -5046,11 +4332,9 @@ static const value_string org_csapi_pam_TpPAMContextName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/pam/TpPAMACLDefault:1.0
*/
-
static const value_string org_csapi_pam_TpPAMACLDefault[] = {
@@ -5059,11 +4343,9 @@ static const value_string org_csapi_pam_TpPAMACLDefault[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/pam/TpPAMPreferenceType:1.0
*/
-
static const value_string org_csapi_pam_TpPAMPreferenceType[] = {
@@ -5072,11 +4354,9 @@ static const value_string org_csapi_pam_TpPAMPreferenceType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/pam/TpPAMEventName:1.0
*/
-
static const value_string org_csapi_pam_TpPAMEventName[] = {
@@ -5096,11 +4376,9 @@ static const value_string org_csapi_pam_TpPAMEventName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/pam/TpPAMwatcherChangeType:1.0
*/
-
static const value_string org_csapi_pam_TpPAMwatcherChangeType[] = {
@@ -5110,11 +4388,9 @@ static const value_string org_csapi_pam_TpPAMwatcherChangeType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/pam/TpPAMErrorCause:1.0
*/
-
static const value_string org_csapi_pam_TpPAMErrorCause[] = {
@@ -5126,11 +4402,9 @@ static const value_string org_csapi_pam_TpPAMErrorCause[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpFolderInfoPropertyName:1.0
*/
-
static const value_string org_csapi_mmm_TpFolderInfoPropertyName[] = {
@@ -5142,11 +4416,9 @@ static const value_string org_csapi_mmm_TpFolderInfoPropertyName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMailboxInfoPropertyName:1.0
*/
-
static const value_string org_csapi_mmm_TpMailboxInfoPropertyName[] = {
@@ -5158,11 +4430,9 @@ static const value_string org_csapi_mmm_TpMailboxInfoPropertyName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMessageInfoPropertyName:1.0
*/
-
static const value_string org_csapi_mmm_TpMessageInfoPropertyName[] = {
@@ -5175,11 +4445,9 @@ static const value_string org_csapi_mmm_TpMessageInfoPropertyName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMessagePriority:1.0
*/
-
static const value_string org_csapi_mmm_TpMessagePriority[] = {
@@ -5189,11 +4457,9 @@ static const value_string org_csapi_mmm_TpMessagePriority[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMessageHeaderFieldType:1.0
*/
-
static const value_string org_csapi_mmm_TpMessageHeaderFieldType[] = {
@@ -5224,11 +4490,9 @@ static const value_string org_csapi_mmm_TpMessageHeaderFieldType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMailboxMessageStatus:1.0
*/
-
static const value_string org_csapi_mmm_TpMailboxMessageStatus[] = {
@@ -5246,11 +4510,9 @@ static const value_string org_csapi_mmm_TpMailboxMessageStatus[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpSetPropertyError:1.0
*/
-
static const value_string org_csapi_mmm_TpSetPropertyError[] = {
@@ -5261,11 +4523,9 @@ static const value_string org_csapi_mmm_TpSetPropertyError[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMessagingEventName:1.0
*/
-
static const value_string org_csapi_mmm_TpMessagingEventName[] = {
@@ -5275,11 +4535,9 @@ static const value_string org_csapi_mmm_TpMessagingEventName[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpDeliveryTimeType:1.0
*/
-
static const value_string org_csapi_mmm_TpDeliveryTimeType[] = {
@@ -5288,11 +4546,9 @@ static const value_string org_csapi_mmm_TpDeliveryTimeType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMessageTreatmentType:1.0
*/
-
static const value_string org_csapi_mmm_TpMessageTreatmentType[] = {
@@ -5304,11 +4560,9 @@ static const value_string org_csapi_mmm_TpMessageTreatmentType[] = {
{ 0, NULL },
};
-
/*
* Enum = IDL:org/csapi/mmm/TpMessagingError:1.0
*/
-
static const value_string org_csapi_mmm_TpMessagingError[] = {
@@ -5337,19 +4591,16 @@ static const value_string org_csapi_mmm_TpMessagingError[] = {
{ 0, NULL },
};
-
/*
* IDL Enums End
*/
-
/* Begin Exception Helper Functions */
+/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_ASSIGNMENT_ID: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_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 */
@@ -5361,13 +4612,11 @@ static void decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ASSIGNMENT_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5376,10 +4625,9 @@ static void decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT: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_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 */
@@ -5391,13 +4639,11 @@ static void decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_FOLDER_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5406,10 +4652,9 @@ static void decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_EVENT_TYPE: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_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 */
@@ -5421,13 +4666,11 @@ static void decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_EVENT_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MESSAGE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5436,10 +4679,9 @@ static void decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_NAME: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_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 */
@@ -5451,13 +4693,11 @@ static void decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_NAME_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PART_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5466,10 +4706,9 @@ static void decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_TYPE: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_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 */
@@ -5481,13 +4720,11 @@ static void decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5496,10 +4733,9 @@ static void decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
-/* Exception = IDL:org/csapi/P_UNKNOWN_SUBSCRIBER: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_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 */
@@ -5511,13 +4747,11 @@ static void decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SUBSCRIBER_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5526,10 +4760,9 @@ static void decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
-/* Exception = IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE: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_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 */
@@ -5541,13 +4774,11 @@ static void decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INFORMATION_NOT_AVAILABLE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PROPERTY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5556,10 +4787,9 @@ static void decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_CRITERIA: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_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 */
@@ -5571,13 +4801,11 @@ static void decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CRITERIA_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TIME_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5586,10 +4814,9 @@ static void decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_SESSION_ID: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_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 */
@@ -5601,13 +4828,11 @@ static void decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SESSION_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_VALIDITY_TIME_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5616,34 +4841,25 @@ static void decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
-/* Exception = IDL:org/csapi/TpCommonExceptions: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_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 */
/* Operation specific Variable declarations Begin */
- gint32 s_octet4;
guint32 u_octet4;
gchar *seq = NULL;
/* Operation specific Variable declarations End */
-
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-u_octet4,u_octet4,"TpCommonExceptions_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5652,10 +4868,9 @@ static void decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_CURRENCY: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_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 */
@@ -5667,13 +4882,11 @@ static void decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CURRENCY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5682,10 +4895,9 @@ static void decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_AMOUNT: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_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 */
@@ -5697,13 +4909,11 @@ static void decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AMOUNT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_CANNOT_CANCEL_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5712,10 +4922,9 @@ static void decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
-/* Exception = IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED: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_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 */
@@ -5727,13 +4936,11 @@ static void decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_APPLICATION_NOT_ACTIVATED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_HEADER_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5742,10 +4949,9 @@ static void decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_ADDRESS: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_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 */
@@ -5757,13 +4963,11 @@ static void decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDRESS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5772,10 +4976,9 @@ static void decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
-/* Exception = IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN: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_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 */
@@ -5787,13 +4990,11 @@ static void decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MAILBOX_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5802,10 +5003,9 @@ static void decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
-/* Exception = IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE: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_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 */
@@ -5817,13 +5017,11 @@ static void decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5832,10 +5030,9 @@ static void decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_VERSION: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_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 */
@@ -5847,13 +5044,11 @@ static void decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VERSION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5862,10 +5057,9 @@ static void decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
-/* Exception = IDL:org/csapi/P_INVALID_NETWORK_STATE: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_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 */
@@ -5877,13 +5071,11 @@ static void decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_NETWORK_STATE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_INVALID_CREDENTIAL_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5892,10 +5084,9 @@ static void decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_ID: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_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 */
@@ -5907,13 +5098,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5922,10 +5111,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
-/* Exception = IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED: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_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 */
@@ -5937,13 +5125,11 @@ static void decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_ACCESS_DENIED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_MEMBER_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5952,10 +5138,9 @@ static void decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
-/* Exception = IDL:org/csapi/fw/P_ACCESS_DENIED: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_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 */
@@ -5967,13 +5152,11 @@ static void decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_DENIED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_IDENTITY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -5982,10 +5165,9 @@ static void decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
-/* Exception = IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED: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_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 */
@@ -5997,13 +5179,11 @@ static void decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_NOT_ENABLED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_GROUP_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6012,10 +5192,9 @@ static void decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY: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_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 */
@@ -6027,13 +5206,11 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_CAPABILITY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6042,10 +5219,9 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT: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_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 */
@@ -6057,13 +5233,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AGREEMENT_TEXT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6072,10 +5246,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN: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_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 */
@@ -6087,13 +5260,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_TOKEN_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6102,10 +5273,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNATURE: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_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 */
@@ -6117,13 +5287,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNATURE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6132,10 +5300,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM: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_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 */
@@ -6147,13 +5314,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNING_ALGORITHM_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ALIAS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6162,10 +5327,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_DOMAIN_ID: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_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 */
@@ -6177,13 +5341,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_DOMAIN_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_AGENT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6192,10 +5354,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_PROPERTY: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_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 */
@@ -6207,13 +5368,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_PROPERTY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNASSIGNED_ALIAS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6222,10 +5381,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_
}
+/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE: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_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 */
@@ -6237,13 +5395,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCESS_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_EXISTS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6252,10 +5408,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
-/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE: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_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 */
@@ -6267,13 +5422,11 @@ static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_ASSOCIATED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6282,10 +5435,9 @@ static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
-/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE: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_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 */
@@ -6297,13 +5449,11 @@ static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_REGISTERED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6312,10 +5462,9 @@ static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
-/* Exception = IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY: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_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 */
@@ -6327,13 +5476,11 @@ static void decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MISSING_MANDATORY_PROPERTY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_MEMBER_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6342,10 +5489,9 @@ static void decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
-/* Exception = IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME: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_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 */
@@ -6357,13 +5503,11 @@ static void decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_DUPLICATE_PROPERTY_NAME_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NO_CAPABILITY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6372,10 +5516,9 @@ static void decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH: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_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 */
@@ -6387,13 +5530,11 @@ static void decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PROPERTY_TYPE_MISMATCH_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_MEMBER_EXISTS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6402,10 +5543,9 @@ static void decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID: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_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 */
@@ -6417,13 +5557,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CLIENT_APP_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IS_CYCLIC_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6432,10 +5570,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_AUTH_TYPE: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_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 */
@@ -6447,13 +5584,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AUTH_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IDENTITY_EXISTS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6462,10 +5597,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_ID: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_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 */
@@ -6477,13 +5611,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_DISASSOCIATED_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6492,10 +5624,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID: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_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 */
@@ -6507,13 +5638,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_PROFILE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ATTRIBUTE_EXISTS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6522,10 +5651,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID: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_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 */
@@ -6537,13 +5665,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6552,10 +5678,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _
}
+/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID: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_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 */
@@ -6567,13 +5692,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACTIVITY_TEST_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_EXISTS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6582,10 +5705,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
-/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID: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_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 */
@@ -6597,13 +5719,11 @@ static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_AGENT_EXISTS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6612,10 +5732,9 @@ static void decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/cs/P_INVALID_USER:1.0 */
-/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID: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_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 */
@@ -6627,13 +5746,11 @@ static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_USER_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6642,10 +5759,9 @@ static void decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
-/* Exception = IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE: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_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 */
@@ -6657,13 +5773,11 @@ static void decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCOUNT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6672,10 +5786,9 @@ static void decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG: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_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 */
@@ -6687,13 +5800,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDITION_TO_SAG_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REQUEST_NUMBER_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6702,10 +5813,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
-/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT: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_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 */
@@ -6717,13 +5827,11 @@ static void decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VOLUME_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6732,10 +5840,9 @@ static void decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(t
}
+/* Exception = IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM: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_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 */
@@ -6747,13 +5854,11 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_VIOLATION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6762,10 +5867,9 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbu
}
+/* Exception = IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM: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_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 */
@@ -6777,13 +5881,11 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SYNTAX_ERROR_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6792,10 +5894,9 @@ static void decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *t
}
+/* Exception = IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
-/* Exception = IDL:org/csapi/ui/P_ID_NOT_FOUND: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_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 */
@@ -6807,13 +5908,11 @@ static void decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ID_NOT_FOUND_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NAME_SPACE_ERROR_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6822,10 +5921,9 @@ static void decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
-/* Exception = IDL:org/csapi/ui/P_ILLEGAL_ID: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_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 */
@@ -6837,13 +5935,11 @@ static void decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_TRANSACTION_IN_PROCESS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6852,10 +5948,9 @@ static void decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *
}
+/* Exception = IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
-/* Exception = IDL:org/csapi/ui/P_ILLEGAL_RANGE: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_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 */
@@ -6867,13 +5962,11 @@ static void decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_RANGE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRANSACTION_IN_PROCESS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6882,10 +5975,9 @@ static void decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
-/* Exception = IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA: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_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 */
@@ -6897,13 +5989,11 @@ static void decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_COLLECTION_CRITERIA_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6912,10 +6002,9 @@ static void decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
-/* Exception = IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED: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_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 */
@@ -6927,13 +6016,11 @@ static void decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SLA_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6942,10 +6029,9 @@ static void decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbu
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
-/* Exception = IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED: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_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 */
@@ -6957,13 +6043,11 @@ static void decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_STATUS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -6972,10 +6056,9 @@ static void decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
-/* Exception = IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL: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_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 */
@@ -6987,13 +6070,11 @@ static void decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REPORTING_INTERVAL_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_QOS_INFO_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7002,10 +6083,9 @@ static void decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
-/* Exception = IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED: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_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 */
@@ -7017,13 +6097,11 @@ static void decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VALIDITY_INFO_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7032,10 +6110,9 @@ static void decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
-/* Exception = IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID: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_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 */
@@ -7047,13 +6124,11 @@ static void decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TERMINAL_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_PIPEQOSINFO_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7062,10 +6137,9 @@ static void decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID: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_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 */
@@ -7077,13 +6151,11 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_FOLDER_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DSCODEPOINT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7092,10 +6164,9 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE: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_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 */
@@ -7107,13 +6178,11 @@ static void decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VPRPID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7122,10 +6191,9 @@ static void decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION: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_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 */
@@ -7137,13 +6205,11 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_REF_VALUE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7152,10 +6218,9 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvb
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX: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_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 */
@@ -7167,13 +6232,11 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MAILBOX_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_INTERFACE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7182,10 +6245,9 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID: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_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 */
@@ -7197,13 +6259,11 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MESSAGE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_CANT_DELETE_VPRP_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7212,10 +6272,9 @@ static void decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX: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_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 */
@@ -7227,13 +6286,11 @@ static void decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATES_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7242,10 +6299,9 @@ static void decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED: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_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 */
@@ -7257,13 +6313,11 @@ static void decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_MENU_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7272,10 +6326,9 @@ static void decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE: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_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 */
@@ -7287,13 +6340,11 @@ static void decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7302,10 +6353,9 @@ static void decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX: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_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 */
@@ -7317,13 +6367,11 @@ static void decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7332,10 +6380,9 @@ static void decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *t
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED: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_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 */
@@ -7347,13 +6394,11 @@ static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_LOCKED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DESCRIPTION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7362,10 +6407,9 @@ static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX: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_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 */
@@ -7377,13 +6421,11 @@ static void decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SLA_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7392,10 +6434,9 @@ static void decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET: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_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 */
@@ -7407,13 +6448,11 @@ static void decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_PROPERTY_NOT_SET_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_TAG_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7422,10 +6461,9 @@ static void decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN: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_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 */
@@ -7437,13 +6475,11 @@ static void decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_FOLDER_IS_OPEN_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VALUE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7452,10 +6488,9 @@ static void decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
-/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN: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_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 */
@@ -7467,13 +6502,11 @@ static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_OPEN_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_COMBINATION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7482,10 +6515,9 @@ static void decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID: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_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 */
@@ -7497,13 +6529,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITES_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7512,10 +6542,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SLA_ID: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_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 */
@@ -7527,13 +6556,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SLA_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRN_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7542,10 +6569,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_STATUS: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_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 */
@@ -7557,13 +6583,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_STATUS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SITE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7572,10 +6596,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO: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_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 */
@@ -7587,13 +6610,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_QOS_INFO_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7602,10 +6623,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO: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_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 */
@@ -7617,13 +6637,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VALIDITY_INFO_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAPS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7632,10 +6650,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO: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_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 */
@@ -7647,13 +6664,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_PIPEQOSINFO_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_LOCATION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7662,10 +6677,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT: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_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 */
@@ -7677,13 +6691,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DSCODEPOINT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7692,10 +6704,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VPRPID: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_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 */
@@ -7707,13 +6718,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VPRPID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_IPSUBNET_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7722,10 +6731,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE: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_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 */
@@ -7737,13 +6745,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_REF_VALUE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAP_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7752,10 +6758,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_INTERFACE: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_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 */
@@ -7767,13 +6772,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_INTERFACE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7782,10 +6785,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
-/* Exception = IDL:org/csapi/cm/P_CANT_DELETE_VPRP: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_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 */
@@ -7797,13 +6799,11 @@ static void decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_CANT_DELETE_VPRP_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORIZED_APPLICATION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7812,10 +6812,9 @@ static void decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_
}
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES: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_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 */
@@ -7827,13 +6826,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATES_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_FOLDER_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7842,10 +6839,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_MENU: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_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 */
@@ -7857,13 +6853,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_MENU_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7872,10 +6866,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK: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_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 */
@@ -7887,13 +6880,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7902,10 +6893,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE: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_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 */
@@ -7917,13 +6907,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MAILBOX_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7932,10 +6920,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION: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_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 */
@@ -7947,13 +6934,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_DESCRIPTION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_INVALID_MESSAGE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7962,10 +6947,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SLA_ID: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_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 */
@@ -7977,13 +6961,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SLA_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -7992,10 +6974,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_TAG: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_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 */
@@ -8007,13 +6988,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_TAG_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8022,10 +7001,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VALUE: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_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 */
@@ -8037,13 +7015,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_VALUE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8052,10 +7028,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_COMBINATION: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_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 */
@@ -8067,13 +7042,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_COMBINATION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8082,10 +7055,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITES: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_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 */
@@ -8097,13 +7069,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITES_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_LOCKED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8112,10 +7082,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_inf
}
+/* Exception = IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRN: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_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 */
@@ -8127,13 +7096,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRN_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8142,10 +7109,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SITE_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_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 */
@@ -8157,13 +7123,11 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SITE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_PROPERTY_NOT_SET_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8172,10 +7136,9 @@ static void decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_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_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 */
@@ -8187,13 +7150,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_FOLDER_IS_OPEN_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8202,10 +7163,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAPS: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_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 */
@@ -8217,13 +7177,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAPS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_GMS_MAILBOX_OPEN_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8232,10 +7190,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION: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_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 */
@@ -8247,13 +7204,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_LOCATION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TERMINAL_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8262,10 +7217,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION: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_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 */
@@ -8277,13 +7231,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8292,10 +7244,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET: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_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 */
@@ -8307,13 +7258,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_IPSUBNET_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8322,10 +7271,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_
}
+/* Exception = IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAP: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_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 */
@@ -8337,13 +7285,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SAP_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REPORTING_INTERVAL_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8352,10 +7298,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP: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_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 */
@@ -8367,13 +7312,11 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_VPRP_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8382,10 +7325,9 @@ static void decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
-/* Exception = IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION: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_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 */
@@ -8397,13 +7339,11 @@ static void decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORIZED_APPLICATION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ID_NOT_FOUND_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8412,10 +7352,9 @@ static void decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
-/* Exception = IDL:org/csapi/cs/P_INVALID_USER: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_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 */
@@ -8427,13 +7366,11 @@ static void decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_USER_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8442,10 +7379,9 @@ static void decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info
}
+/* Exception = IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
-/* Exception = IDL:org/csapi/cs/P_INVALID_ACCOUNT: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_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 */
@@ -8457,13 +7393,11 @@ static void decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCOUNT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_RANGE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8472,10 +7406,9 @@ static void decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
-/* Exception = IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER: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_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 */
@@ -8487,13 +7420,11 @@ static void decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_REQUEST_NUMBER_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_COLLECTION_CRITERIA_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8502,10 +7433,9 @@ static void decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
-/* Exception = IDL:org/csapi/cs/P_INVALID_VOLUME: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_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 */
@@ -8517,13 +7447,11 @@ static void decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VOLUME_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8532,10 +7460,9 @@ static void decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
-/* Exception = IDL:org/csapi/policy/P_ACCESS_VIOLATION: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_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 */
@@ -8547,13 +7474,11 @@ static void decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_VIOLATION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_ACCESS_DENIED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8562,10 +7487,9 @@ static void decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
-/* Exception = IDL:org/csapi/policy/P_SYNTAX_ERROR: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_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 */
@@ -8577,13 +7501,11 @@ static void decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SYNTAX_ERROR_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ACCESS_DENIED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8592,10 +7514,9 @@ static void decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_
}
+/* Exception = IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
-/* Exception = IDL:org/csapi/policy/P_NAME_SPACE_ERROR: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_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 */
@@ -8607,13 +7528,11 @@ static void decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NAME_SPACE_ERROR_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_NOT_ENABLED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8622,10 +7541,9 @@ static void decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
-/* Exception = IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS: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_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 */
@@ -8637,13 +7555,11 @@ static void decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_TRANSACTION_IN_PROCESS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8652,10 +7568,9 @@ static void decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
-/* Exception = IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS: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_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 */
@@ -8667,13 +7582,11 @@ static void decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_TRANSACTION_IN_PROCESS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AGREEMENT_TEXT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8682,10 +7595,9 @@ static void decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE: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_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 */
@@ -8697,13 +7609,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_TOKEN_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8712,10 +7622,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER: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_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 */
@@ -8727,13 +7636,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_MEMBER_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNATURE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8742,10 +7649,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY: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_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 */
@@ -8757,13 +7663,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_IDENTITY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SIGNING_ALGORITHM_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8772,10 +7676,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP: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_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 */
@@ -8787,13 +7690,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_GROUP_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_DOMAIN_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8802,10 +7703,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY: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_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 */
@@ -8817,13 +7717,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_CAPABILITY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_PROPERTY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8832,10 +7730,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES: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_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 */
@@ -8847,13 +7744,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACCESS_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8862,10 +7757,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE: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_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 */
@@ -8877,13 +7771,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8892,10 +7784,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT: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_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 */
@@ -8907,13 +7798,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8922,10 +7811,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS: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_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 */
@@ -8937,13 +7825,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_ALIAS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MISSING_MANDATORY_PROPERTY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8952,10 +7838,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT: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_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 */
@@ -8967,13 +7852,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNKNOWN_AGENT_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_DUPLICATE_PROPERTY_NAME_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -8982,10 +7865,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS: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_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 */
@@ -8997,13 +7879,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNASSIGNED_ALIAS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PROPERTY_TYPE_MISMATCH_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9012,10 +7892,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_EXISTS: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_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 */
@@ -9027,13 +7906,11 @@ static void decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_EXISTS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CLIENT_APP_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9042,10 +7919,9 @@ static void decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED: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_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 */
@@ -9057,13 +7933,11 @@ static void decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_TYPE_ASSOCIATED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AUTH_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9072,10 +7946,9 @@ static void decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_NOT_REGISTERED: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_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 */
@@ -9087,13 +7960,11 @@ static void decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_REGISTERED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9102,10 +7973,9 @@ static void decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, pack
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_NOT_MEMBER: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_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 */
@@ -9117,13 +7987,11 @@ static void decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NOT_MEMBER_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_PROFILE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9132,10 +8000,9 @@ static void decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_i
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_NO_CAPABILITY: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_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 */
@@ -9147,13 +8014,11 @@ static void decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_NO_CAPABILITY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9162,10 +8027,9 @@ static void decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS: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_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 */
@@ -9177,13 +8041,11 @@ static void decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_MEMBER_EXISTS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ACTIVITY_TEST_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9192,10 +8054,9 @@ static void decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_IS_CYCLIC: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_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 */
@@ -9207,13 +8068,11 @@ static void decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IS_CYCLIC_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_ILLEGAL_SERVICE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9222,10 +8081,9 @@ static void decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_in
}
+/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS: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_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 */
@@ -9237,13 +8095,11 @@ static void decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_IDENTITY_EXISTS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SERVICE_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9252,10 +8108,9 @@ static void decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE: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_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 */
@@ -9267,13 +8122,11 @@ static void decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_DISASSOCIATED_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9282,10 +8135,9 @@ static void decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS: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_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 */
@@ -9297,13 +8149,11 @@ static void decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ATTRIBUTE_EXISTS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDITION_TO_SAG_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9312,10 +8162,9 @@ static void decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE: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_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 */
@@ -9327,13 +8176,11 @@ static void decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9342,10 +8189,9 @@ static void decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS: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_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 */
@@ -9357,13 +8203,11 @@ static void decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_ALIAS_EXISTS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9372,10 +8216,9 @@ static void decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_AGENT_EXISTS: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_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 */
@@ -9387,13 +8230,11 @@ static void decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_AGENT_EXISTS_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9402,10 +8243,9 @@ static void decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet
}
+/* Exception = IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE: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_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 */
@@ -9417,13 +8257,11 @@ static void decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ASSIGNMENT_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9432,10 +8270,9 @@ static void decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
-/* Exception = IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL: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_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 */
@@ -9447,13 +8284,11 @@ static void decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_PAM_INVALID_CREDENTIAL_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9462,10 +8297,9 @@ static void decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION: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_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 */
@@ -9477,13 +8311,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_EVENT_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9492,10 +8324,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvb
}
+/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX: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_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 */
@@ -9507,13 +8338,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MAILBOX_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_NAME_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9522,10 +8351,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE: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_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 */
@@ -9537,13 +8365,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_INTERFACE_TYPE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9552,10 +8378,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED: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_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 */
@@ -9567,13 +8392,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNKNOWN_SUBSCRIBER_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9582,10 +8405,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tv
}
+/* Exception = IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID: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_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 */
@@ -9597,13 +8419,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_FOLDER_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INFORMATION_NOT_AVAILABLE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9612,10 +8432,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, p
}
+/* Exception = IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_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_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 */
@@ -9627,13 +8446,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_MESSAGE_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CRITERIA_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9642,10 +8459,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_,
}
+/* Exception = IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID: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_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 */
@@ -9657,13 +8473,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PART_ID_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_SESSION_ID_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9672,28 +8486,31 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, pac
}
+/* Exception = IDL:org/csapi/TpCommonExceptions:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH: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_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;
/* Operation specific Variable declarations End */
-
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-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCommonExceptions_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9702,10 +8519,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tv
}
+/* Exception = IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH: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_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 */
@@ -9717,13 +8533,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_CURRENCY_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9732,10 +8546,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tv
}
+/* Exception = IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY: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_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 */
@@ -9747,13 +8560,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_PROPERTY_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_AMOUNT_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9762,10 +8573,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, pa
}
+/* Exception = IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME: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_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 */
@@ -9777,13 +8587,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_DELIVERY_TIME_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_APPLICATION_NOT_ACTIVATED_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9792,10 +8600,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME: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_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 */
@@ -9807,13 +8614,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_VALIDITY_TIME_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_ADDRESS_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9822,10 +8627,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U
}
+/* Exception = IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED: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_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 */
@@ -9837,13 +8641,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9852,10 +8654,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tv
}
+/* Exception = IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE: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_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 */
@@ -9867,13 +8668,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9882,10 +8681,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tv
}
+/* Exception = IDL:org/csapi/P_INVALID_VERSION:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL: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_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 */
@@ -9897,13 +8695,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_CANNOT_CANCEL_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_VERSION_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9912,10 +8708,9 @@ static void decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packe
}
+/* Exception = IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_HEADER: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_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 */
@@ -9927,13 +8722,11 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_MMM_INVALID_HEADER_ExtraInformation (%u) = %s",
+ proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"P_INVALID_NETWORK_STATE_ExtraInformation (%u) = %s",
u_octet4, (u_octet4 > 0) ? seq : "");
}
@@ -9945,8 +8738,6 @@ static void decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, pack
/* End Exception Helper Functions */
-
-
/*
* Main delegator for exception handling
*
@@ -9960,1077 +8751,923 @@ static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
if (!header->exception_id)
return FALSE;
-
- 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_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_P_INVALID_TIME_AND_DATE_FORMAT) == 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 */
- return TRUE;
- }
-
-
- 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_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_INVALID_INTERFACE_NAME) == 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 */
- return TRUE;
- }
-
-
- 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_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_P_UNKNOWN_SUBSCRIBER) == 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 */
- return TRUE;
- }
-
-
- 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_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_P_INVALID_CRITERIA) == 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 */
- return TRUE;
- }
-
-
- 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_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_TpCommonExceptions) == 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 */
- return TRUE;
- }
-
-
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_CURRENCY) == 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 */
- return TRUE;
- }
-
-
- if (strcmp(header->exception_id, user_exception_org_csapi_P_INVALID_AMOUNT) == 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 */
- return TRUE;
- }
-
-
- 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_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_P_INVALID_ADDRESS) == 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 */
- return TRUE;
- }
-
-
- 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_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_P_UNAUTHORISED_PARAMETER_VALUE) == 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 */
- return TRUE;
- }
-
-
- 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_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_P_INVALID_NETWORK_STATE) == 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 */
- return TRUE;
- }
-
-
- 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_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_SERVICE_ACCESS_DENIED) == 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 */
- 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_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED) == 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_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_fw_P_SERVICE_NOT_ENABLED) == 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_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_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_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY) == 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_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_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_fw_P_INVALID_AGREEMENT_TEXT) == 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_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_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_fw_P_INVALID_SERVICE_TOKEN) == 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_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_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_fw_P_INVALID_SIGNATURE) == 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_fw_P_INVALID_SIGNATURE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SIGNATURE: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_SIGNING_ALGORITHM) == 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_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM: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_INVALID_DOMAIN_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_INVALID_DOMAIN_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_DOMAIN_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_PROPERTY) == 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_PROPERTY(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_INVALID_PROPERTY: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_fw_P_INVALID_ACCESS_TYPE) == 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_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_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_fw_P_ILLEGAL_SERVICE_TYPE) == 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_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_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_fw_P_UNKNOWN_SERVICE_TYPE) == 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_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_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_fw_P_MISSING_MANDATORY_PROPERTY) == 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_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_mmm_P_MMM_INVALID_HEADER(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/mmm/P_MMM_INVALID_HEADER: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_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION) == 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_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_fw_P_PROPERTY_TYPE_MISMATCH) == 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_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_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_fw_P_INVALID_CLIENT_APP_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_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_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_fw_P_INVALID_AUTH_TYPE) == 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_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_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_fw_P_INVALID_SAG_ID) == 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_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_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_fw_P_INVALID_SERVICE_PROFILE_ID) == 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_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_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_fw_P_INVALID_SERVICE_CONTRACT_ID) == 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_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_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_fw_P_INVALID_ACTIVITY_TEST_ID) == 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_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_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_fw_P_ILLEGAL_SERVICE_ID) == 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_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_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_fw_P_UNKNOWN_SERVICE_ID) == 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_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_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_SERVICE_TYPE_UNAVAILABLE) == 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_SERVICE_TYPE_UNAVAILABLE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE: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_fw_P_INVALID_ADDITION_TO_SAG) == 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_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_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_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT) == 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_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_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_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM) == 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_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_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_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM) == 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_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_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_ui_P_ID_NOT_FOUND) == 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_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_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_ui_P_ILLEGAL_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_ui_P_ILLEGAL_ID(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/ui/P_ILLEGAL_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_ui_P_ILLEGAL_RANGE) == 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_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_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_ui_P_INVALID_COLLECTION_CRITERIA) == 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_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_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_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED) == 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_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_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_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED) == 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_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_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_mm_P_INVALID_REPORTING_INTERVAL) == 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_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_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_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED) == 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_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_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_termcap_P_INVALID_TERMINAL_ID) == 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_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_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_gms_P_GMS_INVALID_FOLDER_ID) == 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_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_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_gms_P_GMS_INSUFFICIENT_PRIVILEGE) == 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_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_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_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION) == 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_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_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_gms_P_GMS_INVALID_MAILBOX) == 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_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_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_gms_P_GMS_INVALID_MESSAGE_ID) == 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_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_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_gms_P_GMS_LOCKING_LOCKED_MAILBOX) == 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_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_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_gms_P_GMS_MESSAGE_NOT_REMOVED) == 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_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_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_gms_P_GMS_NUMBER_NOT_POSITIVE) == 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_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_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_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX) == 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_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_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_MAILBOX_LOCKED) == 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_MAILBOX_LOCKED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED: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_gms_P_GMS_CANNOT_UNLOCK_MAILBOX) == 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_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_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_gms_P_GMS_PROPERTY_NOT_SET) == 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_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_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_gms_P_GMS_FOLDER_IS_OPEN) == 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_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_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_gms_P_GMS_MAILBOX_OPEN) == 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_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_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_cm_P_UNKNOWN_VPRP_ID) == 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 */
return TRUE;
}
-
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_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_STATUS) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_VALIDITY_INFO) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_DSCODEPOINT) == 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 */
return TRUE;
}
-
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_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_cm_P_ILLEGAL_REF_VALUE) == 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 */
return TRUE;
}
-
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_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_cm_P_CANT_DELETE_VPRP) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_MENU) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_TEMPLATE_TYPE) == 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 */
return TRUE;
}
-
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_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_cm_P_ILLEGAL_SLA_ID) == 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 */
return TRUE;
}
-
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_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_cm_P_ILLEGAL_VALUE) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_SITES) == 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 */
return TRUE;
}
-
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_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_ILLEGAL_SITE_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 */
return TRUE;
}
-
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_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_SAPS) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_SITE_DESCRIPTION) == 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 */
return TRUE;
}
-
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_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_cm_P_UNKNOWN_SAP) == 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 */
return TRUE;
}
-
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_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_am_P_UNAUTHORIZED_APPLICATION) == 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 */
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_gms_P_GMS_INVALID_FOLDER_ID) == 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_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_cs_P_INVALID_ACCOUNT) == 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_cs_P_INVALID_ACCOUNT(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/cs/P_INVALID_ACCOUNT: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_cs_P_INVALID_REQUEST_NUMBER) == 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_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_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_cs_P_INVALID_VOLUME) == 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_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_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_policy_P_ACCESS_VIOLATION) == 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_policy_P_ACCESS_VIOLATION(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_ACCESS_VIOLATION: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_policy_P_SYNTAX_ERROR) == 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_policy_P_SYNTAX_ERROR(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_SYNTAX_ERROR: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_policy_P_NAME_SPACE_ERROR) == 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_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_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_policy_P_NO_TRANSACTION_IN_PROCESS) == 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_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_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_TRANSACTION_IN_PROCESS) == 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_TRANSACTION_IN_PROCESS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS: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_pam_P_PAM_UNKNOWN_TYPE) == 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_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_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_pam_P_PAM_UNKNOWN_MEMBER) == 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_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_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_pam_P_PAM_UNKNOWN_IDENTITY) == 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_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_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_pam_P_PAM_UNKNOWN_GROUP) == 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_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_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_pam_P_PAM_UNKNOWN_CAPABILITY) == 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_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_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_pam_P_PAM_UNKNOWN_ATTRIBUTES) == 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_UNKNOWN_ATTRIBUTES(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES: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_pam_P_PAM_UNKNOWN_ATTRIBUTE) == 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_ATTRIBUTE(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE: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_pam_P_PAM_UNKNOWN_ASSIGNMENT) == 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_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_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_pam_P_PAM_UNKNOWN_ALIAS) == 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_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_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_pam_P_PAM_UNKNOWN_AGENT) == 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_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_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_UNASSIGNED_ALIAS) == 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_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_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_pam_P_PAM_TYPE_EXISTS) == 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_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_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_pam_P_PAM_TYPE_ASSOCIATED) == 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_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_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_NOT_REGISTERED) == 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_NOT_REGISTERED(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_NOT_REGISTERED: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_NOT_MEMBER) == 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_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_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_pam_P_PAM_NO_CAPABILITY) == 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_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_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_MEMBER_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_MEMBER_EXISTS(tvb, pinfo, tree, offset, header, operation); /* IDL:org/csapi/pam/P_PAM_MEMBER_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_pam_P_PAM_IS_CYCLIC) == 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_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_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_pam_P_PAM_IDENTITY_EXISTS) == 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_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_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_pam_P_PAM_DISASSOCIATED_TYPE) == 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_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_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_pam_P_PAM_ATTRIBUTE_EXISTS) == 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_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_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_pam_P_PAM_ALIAS_NOT_UNIQUE) == 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_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_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_pam_P_PAM_ALIAS_EXISTS) == 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_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_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_fw_P_INVALID_DOMAIN_ID) == 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 */
+ 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_fw_P_INVALID_PROPERTY) == 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_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_ACCESS_TYPE) == 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 */
+ 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_fw_P_ILLEGAL_SERVICE_TYPE) == 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_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_fw_P_UNKNOWN_SERVICE_TYPE) == 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 */
+ 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_fw_P_MISSING_MANDATORY_PROPERTY) == 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_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_fw_P_DUPLICATE_PROPERTY_NAME) == 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 */
+ 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_fw_P_PROPERTY_TYPE_MISMATCH) == 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_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_INVALID_CLIENT_APP_ID) == 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 */
+ 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_fw_P_INVALID_AUTH_TYPE) == 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_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_INVALID_SAG_ID) == 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 */
+ 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_fw_P_INVALID_SERVICE_PROFILE_ID) == 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_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_fw_P_INVALID_SERVICE_CONTRACT_ID) == 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 */
+ 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_fw_P_INVALID_ACTIVITY_TEST_ID) == 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_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_fw_P_ILLEGAL_SERVICE_ID) == 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 */
+ 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_fw_P_UNKNOWN_SERVICE_ID) == 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_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_fw_P_SERVICE_TYPE_UNAVAILABLE) == 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 */
+ 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_ADDITION_TO_SAG) == 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_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_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT) == 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 */
+ 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_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM) == 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_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_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM) == 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 */
+ 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_P_INVALID_ASSIGNMENT_ID) == 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_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_P_INVALID_TIME_AND_DATE_FORMAT) == 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 */
+ 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_P_INVALID_EVENT_TYPE) == 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_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_INVALID_INTERFACE_NAME) == 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 */
+ 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_P_INVALID_INTERFACE_TYPE) == 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_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_P_UNKNOWN_SUBSCRIBER) == 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 */
+ 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_P_INFORMATION_NOT_AVAILABLE) == 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_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_P_INVALID_CRITERIA) == 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 */
+ 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_P_INVALID_SESSION_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_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_TpCommonExceptions) == 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 */
+ 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_P_INVALID_CURRENCY) == 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_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_P_INVALID_AMOUNT) == 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 */
+ 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_P_APPLICATION_NOT_ACTIVATED) == 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_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_P_INVALID_ADDRESS) == 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 */
+ 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_P_UNSUPPORTED_ADDRESS_PLAN) == 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_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_P_UNAUTHORISED_PARAMETER_VALUE) == 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 */
+ 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_P_INVALID_VERSION) == 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_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_P_INVALID_NETWORK_STATE) == 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 */
+ return TRUE;
+ }
@@ -11038,20 +9675,15 @@ static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
}
-
/* Begin Attribute Helper Functions */
-
/* End Attribute Helper Functions */
-
-
/*
* IDL:org/csapi/IpService/setCallback:1.0
*/
-
static void decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11062,7 +9694,6 @@ static void decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11080,10 +9711,8 @@ static void decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_inf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -11096,8 +9725,6 @@ static void decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_inf
g_warning("Unknown Exception ");
-
-
break;
@@ -11111,20 +9738,16 @@ static void decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_inf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/IpService/setCallbackWithSessionID:1.0
*/
-
static void decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11136,7 +9759,6 @@ static void decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11159,10 +9781,8 @@ static void decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -11175,8 +9795,6 @@ static void decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -11190,20 +9808,16 @@ static void decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpInitial/initiateAuthentication:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthentication(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11216,7 +9830,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11229,7 +9842,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpAuthDomain" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -11255,7 +9867,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpAuthDomain" */
break;
@@ -11270,8 +9881,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
g_warning("Unknown Exception ");
-
-
break;
@@ -11285,20 +9894,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpInitial/initiateAuthenticationWithVersion:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11311,7 +9916,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11324,7 +9928,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpAuthDomain" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -11359,7 +9962,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpAuthDomain" */
break;
@@ -11374,8 +9976,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
g_warning("Unknown Exception ");
-
-
break;
@@ -11389,20 +9989,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAuthentication/requestAccess:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11415,7 +10011,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_re
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11457,8 +10052,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_re
g_warning("Unknown Exception ");
-
-
break;
@@ -11472,20 +10065,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_re
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpClientAccess/terminateAccess:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11501,7 +10090,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_term
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11548,10 +10136,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_term
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -11564,8 +10150,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_term
g_warning("Unknown Exception ");
-
-
break;
@@ -11579,20 +10163,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_term
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/obtainInterface:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11605,7 +10185,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11644,8 +10223,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
g_warning("Unknown Exception ");
-
-
break;
@@ -11659,20 +10236,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/obtainInterfaceWithCallback:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCallback(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11685,7 +10258,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11727,8 +10299,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
g_warning("Unknown Exception ");
-
-
break;
@@ -11742,20 +10312,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInte
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/endAccess:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11768,7 +10334,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11788,7 +10353,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(
decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpProperty" */
}
@@ -11801,10 +10365,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -11817,8 +10379,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(
g_warning("Unknown Exception ");
-
-
break;
@@ -11832,20 +10392,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/listInterfaces:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11860,7 +10416,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11905,8 +10460,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterf
g_warning("Unknown Exception ");
-
-
break;
@@ -11920,20 +10473,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/releaseInterface:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -11946,7 +10495,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -11970,10 +10518,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -11986,8 +10532,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInt
g_warning("Unknown Exception ");
-
-
break;
@@ -12001,20 +10545,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/selectSigningAlgorithm:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12027,7 +10567,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSign
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12072,8 +10611,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSign
g_warning("Unknown Exception ");
-
-
break;
@@ -12087,20 +10624,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSign
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/terminateAccess:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12116,7 +10649,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12154,10 +10686,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateA
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -12170,8 +10700,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateA
g_warning("Unknown Exception ");
-
-
break;
@@ -12185,20 +10713,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAccess/relinquishInterface:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12214,7 +10738,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquish
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12261,10 +10784,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquish
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -12277,8 +10798,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquish
g_warning("Unknown Exception ");
-
-
break;
@@ -12292,20 +10811,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquish
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication/authenticate:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12321,7 +10836,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12376,8 +10890,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown Exception ");
-
-
break;
@@ -12391,20 +10903,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication/abortAuthentication:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_abortAuthentication(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12415,7 +10923,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12430,10 +10937,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -12446,8 +10951,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown Exception ");
-
-
break;
@@ -12461,20 +10964,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication/authenticationSucceeded:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticationSucceeded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12485,7 +10984,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12500,10 +10998,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -12516,8 +11012,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown Exception ");
-
-
break;
@@ -12531,20 +11025,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication/challenge:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12560,7 +11050,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12615,8 +11104,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown Exception ");
-
-
break;
@@ -12630,20 +11117,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAut
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication/selectEncryptionMethod:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12656,7 +11139,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12701,8 +11183,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown Exception ");
-
-
break;
@@ -12716,20 +11196,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication/authenticate:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12745,7 +11221,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12800,8 +11275,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown Exception ");
-
-
break;
@@ -12815,20 +11288,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication/abortAuthentication:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortAuthentication(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12839,7 +11308,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12854,10 +11322,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -12870,8 +11336,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown Exception ");
-
-
break;
@@ -12885,20 +11349,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication/authenticationSucceeded:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticationSucceeded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12909,7 +11369,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -12924,10 +11383,8 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -12940,8 +11397,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown Exception ");
-
-
break;
@@ -12955,20 +11410,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication/selectAuthenticationMechanism:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -12981,7 +11432,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13026,8 +11476,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown Exception ");
-
-
break;
@@ -13041,20 +11489,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_access/trust_and_security/IpAPILevelAuthentication/challenge:1.0
*/
-
static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13070,7 +11514,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13125,8 +11568,6 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown Exception ");
-
-
break;
@@ -13140,20 +11581,16 @@ static void decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentic
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/notification/IpAppEventNotification/reportNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13165,7 +11602,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13175,10 +11611,8 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
/* Begin union "org_csapi_fw_TpFwEventInfo" */
-
decode_org_csapi_fw_TpFwEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpFwEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -13194,10 +11628,8 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13210,8 +11642,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
g_warning("Unknown Exception ");
-
-
break;
@@ -13225,20 +11655,16 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/notification/IpAppEventNotification/notificationTerminated:1.0
*/
-
static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_notificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13249,7 +11675,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13264,10 +11689,8 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13280,8 +11703,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
g_warning("Unknown Exception ");
-
-
break;
@@ -13295,20 +11716,16 @@ static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotificati
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/notification/IpEventNotification/createNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13320,7 +11737,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13330,10 +11746,8 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
/* Begin union "org_csapi_fw_TpFwEventCriteria" */
-
decode_org_csapi_fw_TpFwEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpFwEventCriteria" */
break;
@@ -13361,8 +11775,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
g_warning("Unknown Exception ");
-
-
break;
@@ -13376,20 +11788,16 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/notification/IpEventNotification/destroyNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13401,7 +11809,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13421,10 +11828,8 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13437,8 +11842,6 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
g_warning("Unknown Exception ");
-
-
break;
@@ -13452,20 +11855,16 @@ static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/activityTestRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13479,7 +11878,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13508,10 +11906,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13524,8 +11920,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
g_warning("Unknown Exception ");
-
-
break;
@@ -13539,20 +11933,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/appActivityTestReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13564,7 +11954,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appAc
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13584,10 +11973,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appAc
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13600,8 +11987,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appAc
g_warning("Unknown Exception ");
-
-
break;
@@ -13615,20 +12000,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appAc
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/fwFaultReportInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13640,7 +12021,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13661,10 +12041,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13677,8 +12055,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
g_warning("Unknown Exception ");
-
-
break;
@@ -13692,20 +12068,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/fwFaultRecoveryInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13717,7 +12089,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13738,10 +12109,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13754,8 +12123,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
g_warning("Unknown Exception ");
-
-
break;
@@ -13769,20 +12136,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFau
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/svcUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13795,7 +12158,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13825,10 +12187,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUn
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13841,8 +12201,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUn
g_warning("Unknown Exception ");
-
-
break;
@@ -13856,20 +12214,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/genFaultStatsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13884,7 +12238,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -13897,7 +12250,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
u_octet4_loop_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -13926,10 +12278,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -13942,8 +12292,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
g_warning("Unknown Exception ");
-
-
break;
@@ -13957,20 +12305,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/fwUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -13982,7 +12326,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUna
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14003,10 +12346,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUna
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14019,8 +12360,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUna
g_warning("Unknown Exception ");
-
-
break;
@@ -14034,20 +12373,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUna
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/activityTestErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14059,7 +12394,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14079,10 +12413,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14095,8 +12427,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
g_warning("Unknown Exception ");
-
-
break;
@@ -14110,20 +12440,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activ
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/genFaultStatsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14138,7 +12464,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14177,10 +12502,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14193,8 +12516,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
g_warning("Unknown Exception ");
-
-
break;
@@ -14208,20 +12529,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/appUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14234,7 +12551,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14258,10 +12574,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUn
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14274,8 +12588,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUn
g_warning("Unknown Exception ");
-
-
break;
@@ -14289,20 +12601,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/genFaultStatsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14313,7 +12621,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14326,7 +12633,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -14337,10 +12643,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14353,8 +12657,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
g_warning("Unknown Exception ");
-
-
break;
@@ -14368,20 +12670,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/svcAvailStatusInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14394,7 +12692,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14424,10 +12721,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14440,8 +12735,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAv
g_warning("Unknown Exception ");
-
-
break;
@@ -14455,20 +12748,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/generateFaultStatisticsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14484,7 +12773,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14502,7 +12790,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
u_octet4_loop_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -14531,10 +12818,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14547,8 +12832,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
g_warning("Unknown Exception ");
-
-
break;
@@ -14562,20 +12845,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/generateFaultStatisticsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14593,7 +12872,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14646,10 +12924,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14662,8 +12938,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
g_warning("Unknown Exception ");
-
-
break;
@@ -14677,20 +12951,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/generateFaultStatisticsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14702,7 +12972,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14720,7 +12989,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -14731,10 +12999,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14747,8 +13013,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
g_warning("Unknown Exception ");
-
-
break;
@@ -14762,20 +13026,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_gener
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppFaultManager/fwAvailStatusInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14787,7 +13047,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAva
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14808,10 +13067,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAva
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14824,8 +13081,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAva
g_warning("Unknown Exception ");
-
-
break;
@@ -14839,20 +13094,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAva
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/queryAppLoadReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14863,7 +13114,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14876,7 +13126,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -14887,10 +13136,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14903,8 +13150,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
g_warning("Unknown Exception ");
-
-
break;
@@ -14918,20 +13163,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/queryLoadRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -14944,7 +13185,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -14964,7 +13204,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -14977,10 +13216,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -14993,8 +13230,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown Exception ");
-
-
break;
@@ -15008,20 +13243,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/queryLoadErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15033,7 +13264,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15054,10 +13284,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15070,8 +13298,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown Exception ");
-
-
break;
@@ -15085,20 +13311,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/loadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15111,7 +13333,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15131,7 +13352,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLe
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -15144,10 +13364,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15160,8 +13378,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLe
g_warning("Unknown Exception ");
-
-
break;
@@ -15175,20 +13391,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/resumeNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15199,7 +13411,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resume
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15214,10 +13425,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resume
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15230,8 +13439,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resume
g_warning("Unknown Exception ");
-
-
break;
@@ -15245,20 +13452,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resume
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/suspendNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15269,7 +13472,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspen
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15284,10 +13486,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspen
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15300,8 +13500,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspen
g_warning("Unknown Exception ");
-
-
break;
@@ -15315,20 +13513,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspen
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/createLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15339,7 +13533,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_create
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15354,10 +13547,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_create
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15370,8 +13561,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_create
g_warning("Unknown Exception ");
-
-
break;
@@ -15385,20 +13574,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_create
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/destroyLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15409,7 +13594,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destro
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15424,10 +13608,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destro
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15440,8 +13622,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destro
g_warning("Unknown Exception ");
-
-
break;
@@ -15455,20 +13635,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destro
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/queryAppLoadStatsReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15480,7 +13656,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15498,7 +13673,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -15509,10 +13683,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15525,8 +13697,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
g_warning("Unknown Exception ");
-
-
break;
@@ -15540,20 +13710,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/queryLoadStatsRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15567,7 +13733,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15592,7 +13757,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -15605,10 +13769,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15621,8 +13783,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown Exception ");
-
-
break;
@@ -15636,20 +13796,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppLoadManager/queryLoadStatsErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15662,7 +13818,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15688,10 +13843,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15704,8 +13857,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown Exception ");
-
-
break;
@@ -15719,20 +13870,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/reportLoad:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15744,7 +13891,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15765,10 +13911,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15781,8 +13925,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -15796,20 +13938,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/queryLoadReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15824,7 +13962,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15855,7 +13992,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -15866,10 +14002,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15882,8 +14016,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
g_warning("Unknown Exception ");
-
-
break;
@@ -15897,20 +14029,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/queryAppLoadRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -15923,7 +14051,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -15943,7 +14070,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -15956,10 +14082,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -15972,8 +14096,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown Exception ");
-
-
break;
@@ -15987,20 +14109,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/queryAppLoadErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16012,7 +14130,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16033,10 +14150,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16049,8 +14164,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown Exception ");
-
-
break;
@@ -16064,20 +14177,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/createLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16092,7 +14201,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16125,10 +14233,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16141,8 +14247,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -16156,20 +14260,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/destroyLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16184,7 +14284,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16217,10 +14316,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16233,8 +14330,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLo
g_warning("Unknown Exception ");
-
-
break;
@@ -16248,20 +14343,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/resumeNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16276,7 +14367,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNot
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16309,10 +14399,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNot
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16325,8 +14413,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNot
g_warning("Unknown Exception ");
-
-
break;
@@ -16340,20 +14426,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNot
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/suspendNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16368,7 +14450,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16401,10 +14482,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16417,8 +14496,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNo
g_warning("Unknown Exception ");
-
-
break;
@@ -16432,20 +14509,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/queryLoadStatsReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16461,7 +14534,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16497,7 +14569,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -16508,10 +14579,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16524,8 +14593,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
g_warning("Unknown Exception ");
-
-
break;
@@ -16539,20 +14606,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoad
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/queryAppLoadStatsRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16566,7 +14629,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16591,7 +14653,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -16604,10 +14665,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16620,8 +14679,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown Exception ");
-
-
break;
@@ -16635,20 +14692,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpLoadManager/queryAppLoadStatsErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16661,7 +14714,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16687,10 +14739,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16703,8 +14753,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown Exception ");
-
-
break;
@@ -16718,20 +14766,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppOAM/systemDateTimeQuery:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16744,7 +14788,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTime
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16789,8 +14832,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTime
g_warning("Unknown Exception ");
-
-
break;
@@ -16804,20 +14845,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTime
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpOAM/systemDateTimeQuery:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16830,7 +14867,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQue
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16875,8 +14911,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQue
g_warning("Unknown Exception ");
-
-
break;
@@ -16890,20 +14924,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQue
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/activityTestReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -16917,7 +14947,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activity
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -16946,10 +14975,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activity
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -16962,8 +14989,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activity
g_warning("Unknown Exception ");
-
-
break;
@@ -16977,20 +15002,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activity
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/appActivityTestRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17004,7 +15025,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17033,10 +15053,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17049,8 +15067,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
g_warning("Unknown Exception ");
-
-
break;
@@ -17064,20 +15080,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/svcUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17090,7 +15102,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnava
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17114,10 +15125,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnava
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17130,8 +15139,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnava
g_warning("Unknown Exception ");
-
-
break;
@@ -17145,20 +15152,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnava
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/genFaultStatsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17173,7 +15176,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17186,7 +15188,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
u_octet4_loop_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -17215,10 +15216,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17231,8 +15230,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
g_warning("Unknown Exception ");
-
-
break;
@@ -17246,20 +15243,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/appActivityTestErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17271,7 +15264,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17291,10 +15283,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17307,8 +15297,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
g_warning("Unknown Exception ");
-
-
break;
@@ -17322,20 +15310,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActiv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/appUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17348,7 +15332,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnava
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17372,10 +15355,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnava
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17388,8 +15369,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnava
g_warning("Unknown Exception ");
-
-
break;
@@ -17403,20 +15382,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnava
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/genFaultStatsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17427,7 +15402,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17440,7 +15414,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
break;
@@ -17451,10 +15424,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17467,8 +15438,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
g_warning("Unknown Exception ");
-
-
break;
@@ -17482,20 +15451,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/genFaultStatsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17507,7 +15472,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17528,10 +15492,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17544,8 +15506,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
g_warning("Unknown Exception ");
-
-
break;
@@ -17559,20 +15519,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFault
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/appAvailStatusInd:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17584,7 +15540,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvail
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17605,10 +15560,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvail
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17621,8 +15574,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvail
g_warning("Unknown Exception ");
-
-
break;
@@ -17636,20 +15587,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvail
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/generateFaultStatisticsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17665,7 +15612,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17683,7 +15629,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
u_octet4_loop_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -17712,10 +15657,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17728,8 +15671,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
g_warning("Unknown Exception ");
-
-
break;
@@ -17743,20 +15684,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/generateFaultStatisticsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17768,7 +15705,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17786,7 +15722,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
break;
@@ -17797,10 +15732,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17813,8 +15746,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
g_warning("Unknown Exception ");
-
-
break;
@@ -17828,20 +15759,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpFaultManager/generateFaultStatisticsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17854,7 +15781,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17880,10 +15806,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17896,8 +15820,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
g_warning("Unknown Exception ");
-
-
break;
@@ -17911,20 +15833,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generate
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt/enableHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -17936,7 +15854,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableH
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -17959,10 +15876,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableH
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -17975,8 +15890,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableH
g_warning("Unknown Exception ");
-
-
break;
@@ -17990,20 +15903,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableH
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt/disableHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18014,7 +15923,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disable
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18029,10 +15937,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disable
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18045,8 +15951,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disable
g_warning("Unknown Exception ");
-
-
break;
@@ -18060,20 +15964,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disable
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt/changeInterval:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18085,7 +15985,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeI
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18105,10 +16004,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeI
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18121,8 +16018,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeI
g_warning("Unknown Exception ");
-
-
break;
@@ -18136,20 +16031,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeI
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppHeartBeat/pulse:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18160,7 +16051,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18175,10 +16065,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18191,8 +16079,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -18206,20 +16092,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpHeartBeat/pulse:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18230,7 +16112,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18245,10 +16126,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18261,8 +16140,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -18276,20 +16153,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt/enableAppHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18301,7 +16174,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enab
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18324,10 +16196,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enab
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18340,8 +16210,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enab
g_warning("Unknown Exception ");
-
-
break;
@@ -18355,20 +16223,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enab
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt/disableAppHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18379,7 +16243,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18394,10 +16257,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18410,8 +16271,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disa
g_warning("Unknown Exception ");
-
-
break;
@@ -18425,20 +16284,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt/changeInterval:1.0
*/
-
static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18450,7 +16305,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_chan
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18470,10 +16324,8 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_chan
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -18486,8 +16338,6 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_chan
g_warning("Unknown Exception ");
-
-
break;
@@ -18501,20 +16351,16 @@ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_chan
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/discovery/IpServiceDiscovery/listServiceTypes:1.0
*/
-
static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18529,7 +16375,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18574,8 +16419,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
g_warning("Unknown Exception ");
-
-
break;
@@ -18589,20 +16432,16 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/discovery/IpServiceDiscovery/describeServiceType:1.0
*/
-
static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18615,7 +16454,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_desc
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18645,7 +16483,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_desc
decode_org_csapi_fw_TpServiceTypeDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceTypeDescription" */
break;
@@ -18660,8 +16497,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_desc
g_warning("Unknown Exception ");
-
-
break;
@@ -18675,20 +16510,16 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_desc
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/discovery/IpServiceDiscovery/discoverService:1.0
*/
-
static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18706,7 +16537,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_disc
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18735,7 +16565,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_disc
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -18766,7 +16595,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_disc
decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpService" */
}
@@ -18783,8 +16611,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_disc
g_warning("Unknown Exception ");
-
-
break;
@@ -18798,20 +16624,16 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_disc
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/discovery/IpServiceDiscovery/listSubscribedServices:1.0
*/
-
static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18824,7 +16646,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18852,7 +16673,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpService" */
}
@@ -18869,8 +16689,6 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
g_warning("Unknown Exception ");
-
-
break;
@@ -18884,20 +16702,16 @@ static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_list
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement/signServiceAgreement:1.0
*/
-
static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -18913,7 +16727,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -18981,8 +16794,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
g_warning("Unknown Exception ");
-
-
break;
@@ -18996,20 +16807,16 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement/terminateServiceAgreement:1.0
*/
-
static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19025,7 +16832,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19072,10 +16878,8 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19088,8 +16892,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
g_warning("Unknown Exception ");
-
-
break;
@@ -19103,20 +16905,16 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgr
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement/signServiceAgreement:1.0
*/
-
static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19129,7 +16927,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19177,7 +16974,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpSignatureAndServiceMgr" */
break;
@@ -19192,8 +16988,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown Exception ");
-
-
break;
@@ -19207,20 +17001,16 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement/terminateServiceAgreement:1.0
*/
-
static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19236,7 +17026,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19283,10 +17072,8 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19299,8 +17086,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown Exception ");
-
-
break;
@@ -19314,20 +17099,16 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement/selectService:1.0
*/
-
static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19340,7 +17121,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19385,8 +17165,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown Exception ");
-
-
break;
@@ -19400,20 +17178,16 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement/initiateSignServiceAgreement:1.0
*/
-
static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19426,7 +17200,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19450,10 +17223,8 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19466,8 +17237,6 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown Exception ");
-
-
break;
@@ -19481,20 +17250,16 @@ static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreem
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement/createServiceProfile:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_createServiceProfile(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19507,7 +17272,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19520,7 +17284,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProfileDescription" */
break;
@@ -19552,8 +17315,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -19567,20 +17328,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement/modifyServiceProfile:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_modifyServiceProfile(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19591,7 +17348,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19604,7 +17360,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpServiceProfile_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProfile" */
break;
@@ -19615,10 +17370,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19631,8 +17384,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -19646,20 +17397,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement/deleteServiceProfile:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deleteServiceProfile(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19672,7 +17419,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19696,10 +17442,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19712,8 +17456,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -19727,20 +17469,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement/assign:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19753,7 +17491,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19786,10 +17523,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19802,8 +17537,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -19817,20 +17550,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement/deassign:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19843,7 +17572,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19876,10 +17604,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -19892,8 +17618,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -19907,20 +17631,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement/requestConflictInfo:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -19933,7 +17653,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -19961,7 +17680,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpAssignSagToServiceProfileConflict" */
}
@@ -19978,8 +17696,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -19993,20 +17709,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery/listServiceProfiles:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20021,7 +17733,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20066,8 +17777,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20081,20 +17790,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery/describeServiceProfile:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_describeServiceProfile(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20107,7 +17812,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20137,7 +17841,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProfileDescription" */
break;
@@ -20152,8 +17855,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20167,20 +17868,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileInfoQuery/listAssignedMembers:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20195,7 +17892,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20249,8 +17945,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20264,20 +17958,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement/createServiceContract:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_createServiceContract(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20290,7 +17980,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20303,7 +17992,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceContractDescription" */
break;
@@ -20335,8 +18023,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20350,20 +18036,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement/modifyServiceContract:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_modifyServiceContract(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20374,7 +18056,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20387,7 +18068,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpServiceContract_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceContract" */
break;
@@ -20398,10 +18078,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -20414,8 +18092,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20429,20 +18105,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement/deleteServiceContract:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_deleteServiceContract(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20455,7 +18127,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20479,10 +18150,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -20495,8 +18164,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20510,20 +18177,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery/describeServiceContract:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_describeServiceContract(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20536,7 +18199,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20566,7 +18228,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceContractDescription" */
break;
@@ -20581,8 +18242,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20596,20 +18255,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery/listServiceContracts:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20624,7 +18279,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20669,8 +18323,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20684,20 +18336,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractInfoQuery/listServiceProfiles:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20712,7 +18360,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20766,8 +18413,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown Exception ");
-
-
break;
@@ -20781,20 +18426,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement/modifyEntOpAccount:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20807,7 +18448,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20827,7 +18467,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpProperty" */
}
@@ -20840,10 +18479,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -20856,8 +18493,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
g_warning("Unknown Exception ");
-
-
break;
@@ -20871,20 +18506,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement/deleteEntOpAccount:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_deleteEntOpAccount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20895,7 +18526,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20910,10 +18540,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -20926,8 +18554,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
g_warning("Unknown Exception ");
-
-
break;
@@ -20941,20 +18567,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountInfoQuery/describeEntOpAccount:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountInfoQuery_describeEntOpAccount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -20965,7 +18587,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -20986,7 +18607,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
decode_org_csapi_fw_TpEntOp_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpEntOp" */
break;
@@ -21001,8 +18621,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
g_warning("Unknown Exception ");
-
-
break;
@@ -21016,20 +18634,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/createClientApp:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createClientApp(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21040,7 +18654,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21053,7 +18666,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpClientAppDescription" */
break;
@@ -21064,10 +18676,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21080,8 +18690,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21095,20 +18703,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/modifyClientApp:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifyClientApp(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21119,7 +18723,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21132,7 +18735,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpClientAppDescription" */
break;
@@ -21143,10 +18745,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21159,8 +18759,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21174,20 +18772,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/deleteClientApp:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteClientApp(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21200,7 +18794,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21224,10 +18817,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21240,8 +18831,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21255,20 +18844,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/createSAG:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21283,7 +18868,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21296,7 +18880,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
decode_org_csapi_fw_TpSag_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpSag" */
u_octet4_loop_clientAppIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -21325,10 +18908,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21341,8 +18922,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21356,20 +18935,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/modifySAG:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_modifySAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21380,7 +18955,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21393,7 +18967,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
decode_org_csapi_fw_TpSag_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpSag" */
break;
@@ -21404,10 +18977,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21420,8 +18991,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21435,20 +19004,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/deleteSAG:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteSAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21461,7 +19026,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21485,10 +19049,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21501,8 +19063,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21516,20 +19076,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/addSAGMembers:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21544,7 +19100,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21586,10 +19141,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21602,8 +19155,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21617,20 +19168,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/removeSAGMembers:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21645,7 +19192,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21687,10 +19233,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -21703,8 +19247,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21718,20 +19260,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement/requestConflictInfo:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21744,7 +19282,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21772,7 +19309,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
decode_org_csapi_fw_TpAddSagMembersConflict_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpAddSagMembersConflict" */
}
@@ -21789,8 +19325,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21804,20 +19338,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery/describeClientApp:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeClientApp(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21830,7 +19360,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21860,7 +19389,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpClientAppDescription" */
break;
@@ -21875,8 +19403,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21890,20 +19416,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery/listClientApps:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -21918,7 +19440,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -21963,8 +19484,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -21978,20 +19497,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery/describeSAG:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22004,7 +19519,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22049,8 +19563,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -22064,20 +19576,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery/listSAGs:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22092,7 +19600,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22137,8 +19644,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -22152,20 +19657,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery/listSAGMembers:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22180,7 +19681,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22234,8 +19734,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -22249,20 +19747,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppInfoQuery/listClientAppMembership:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22277,7 +19771,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22331,8 +19824,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown Exception ");
-
-
break;
@@ -22346,20 +19837,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpCl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification/reportNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22371,7 +19858,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22381,10 +19867,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
/* Begin union "org_csapi_fw_TpFwEventInfo" */
-
decode_org_csapi_fw_TpFwEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpFwEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -22400,10 +19884,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -22416,8 +19898,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
g_warning("Unknown Exception ");
-
-
break;
@@ -22431,20 +19911,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification/notificationTerminated:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_notificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22455,7 +19931,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22470,10 +19945,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -22486,8 +19959,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
g_warning("Unknown Exception ");
-
-
break;
@@ -22501,20 +19972,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEven
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification/createNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22526,7 +19993,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22536,10 +20002,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
/* Begin union "org_csapi_fw_TpFwEventCriteria" */
-
decode_org_csapi_fw_TpFwEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpFwEventCriteria" */
break;
@@ -22567,8 +20031,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -22582,20 +20044,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification/destroyNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22607,7 +20065,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22627,10 +20084,8 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -22643,8 +20098,6 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -22658,20 +20111,16 @@ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery/listServiceTypes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22686,7 +20135,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22731,8 +20179,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listSe
g_warning("Unknown Exception ");
-
-
break;
@@ -22746,20 +20192,16 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery/describeServiceType:1.0
*/
-
static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22772,7 +20214,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_descri
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22802,7 +20243,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_descri
decode_org_csapi_fw_TpServiceTypeDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceTypeDescription" */
break;
@@ -22817,8 +20257,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_descri
g_warning("Unknown Exception ");
-
-
break;
@@ -22832,20 +20270,16 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_descri
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery/discoverService:1.0
*/
-
static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22863,7 +20297,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discov
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -22892,7 +20325,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discov
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -22923,7 +20355,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discov
decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpService" */
}
@@ -22940,8 +20371,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discov
g_warning("Unknown Exception ");
-
-
break;
@@ -22955,20 +20384,16 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discov
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery/listRegisteredServices:1.0
*/
-
static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -22981,7 +20406,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23009,7 +20433,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRe
decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpService" */
}
@@ -23026,8 +20449,6 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRe
g_warning("Unknown Exception ");
-
-
break;
@@ -23041,20 +20462,16 @@ static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager/createServiceManager:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23069,7 +20486,6 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23098,7 +20514,6 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -23135,8 +20550,6 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
g_warning("Unknown Exception ");
-
-
break;
@@ -23150,20 +20563,16 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager/destroyServiceManager:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23176,7 +20585,6 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23200,10 +20608,8 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -23216,8 +20622,6 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
g_warning("Unknown Exception ");
-
-
break;
@@ -23231,20 +20635,16 @@ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration/registerService:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23259,7 +20659,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23288,7 +20687,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -23322,8 +20720,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown Exception ");
-
-
break;
@@ -23337,20 +20733,16 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration/announceServiceAvailability:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23363,7 +20755,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23390,10 +20781,8 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -23406,8 +20795,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown Exception ");
-
-
break;
@@ -23421,20 +20808,16 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration/unregisterService:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23447,7 +20830,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23471,10 +20853,8 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -23487,8 +20867,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown Exception ");
-
-
break;
@@ -23502,20 +20880,16 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration/describeService:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23528,7 +20902,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23558,7 +20931,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
decode_org_csapi_fw_TpServiceDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceDescription" */
break;
@@ -23573,8 +20945,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown Exception ");
-
-
break;
@@ -23588,20 +20958,16 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration/unannounceService:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23614,7 +20980,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23638,10 +21003,8 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -23654,8 +21017,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown Exception ");
-
-
break;
@@ -23669,20 +21030,16 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration/registerServiceSubType:1.0
*/
-
static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23699,7 +21056,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23728,7 +21084,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -23746,7 +21101,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceTypePropertyValue" */
}
@@ -23780,8 +21134,6 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown Exception ");
-
-
break;
@@ -23795,20 +21147,16 @@ static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegis
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/querySvcLoadReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23819,7 +21167,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23832,7 +21179,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -23843,10 +21189,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -23859,8 +21203,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
g_warning("Unknown Exception ");
-
-
break;
@@ -23874,20 +21216,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/queryLoadRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23900,7 +21238,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadR
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -23920,7 +21257,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadR
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -23933,10 +21269,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadR
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -23949,8 +21283,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadR
g_warning("Unknown Exception ");
-
-
break;
@@ -23964,20 +21296,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadR
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/queryLoadErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -23989,7 +21317,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadE
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24010,10 +21337,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadE
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24026,8 +21351,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadE
g_warning("Unknown Exception ");
-
-
break;
@@ -24041,20 +21364,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadE
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/loadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24067,7 +21386,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelN
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24087,7 +21405,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelN
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -24100,10 +21417,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelN
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24116,8 +21431,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelN
g_warning("Unknown Exception ");
-
-
break;
@@ -24131,20 +21444,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelN
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/suspendNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24155,7 +21464,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNot
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24170,10 +21478,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNot
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24186,8 +21492,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNot
g_warning("Unknown Exception ");
-
-
break;
@@ -24201,20 +21505,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNot
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/resumeNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24225,7 +21525,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNoti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24240,10 +21539,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNoti
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24256,8 +21553,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNoti
g_warning("Unknown Exception ");
-
-
break;
@@ -24271,20 +21566,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNoti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/createLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24295,7 +21586,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoad
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24310,10 +21600,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoad
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24326,8 +21614,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoad
g_warning("Unknown Exception ");
-
-
break;
@@ -24341,20 +21627,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoad
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/destroyLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24365,7 +21647,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24380,10 +21661,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24396,8 +21675,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -24411,20 +21688,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/querySvcLoadStatsReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24436,7 +21709,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24454,7 +21726,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -24465,10 +21736,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24481,8 +21750,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
g_warning("Unknown Exception ");
-
-
break;
@@ -24496,20 +21763,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/queryLoadStatsRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24523,7 +21786,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24548,7 +21810,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -24561,10 +21822,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24577,8 +21836,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
g_warning("Unknown Exception ");
-
-
break;
@@ -24592,20 +21849,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcLoadManager/queryLoadStatsErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24618,7 +21871,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24644,10 +21896,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24660,8 +21910,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
g_warning("Unknown Exception ");
-
-
break;
@@ -24675,20 +21923,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/reportLoad:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24700,7 +21944,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24721,10 +21964,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24737,8 +21978,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(
g_warning("Unknown Exception ");
-
-
break;
@@ -24752,20 +21991,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/queryLoadReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24777,7 +22012,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadRe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24796,7 +22030,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadRe
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -24807,10 +22040,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadRe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24823,8 +22054,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadRe
g_warning("Unknown Exception ");
-
-
break;
@@ -24838,20 +22067,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadRe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/querySvcLoadRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24864,7 +22089,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24884,7 +22108,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -24897,10 +22120,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24913,8 +22134,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -24928,20 +22147,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/querySvcLoadErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -24953,7 +22168,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -24974,10 +22188,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -24990,8 +22202,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -25005,20 +22215,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/createLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25030,7 +22236,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadL
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25051,10 +22256,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadL
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25067,8 +22270,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadL
g_warning("Unknown Exception ");
-
-
break;
@@ -25082,20 +22283,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadL
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/destroyLoadLevelNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25107,7 +22304,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoad
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25128,10 +22324,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoad
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25144,8 +22338,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoad
g_warning("Unknown Exception ");
-
-
break;
@@ -25159,20 +22351,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoad
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/suspendNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25184,7 +22372,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNoti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25205,10 +22392,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNoti
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25221,8 +22406,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNoti
g_warning("Unknown Exception ");
-
-
break;
@@ -25236,20 +22419,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNoti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/resumeNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25261,7 +22440,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25282,10 +22460,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotif
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25298,8 +22474,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -25313,20 +22487,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/queryLoadStatsReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25339,7 +22509,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadSt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25363,7 +22532,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadSt
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -25374,10 +22542,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadSt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25390,8 +22556,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadSt
g_warning("Unknown Exception ");
-
-
break;
@@ -25405,20 +22569,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadSt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/querySvcLoadStatsRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25432,7 +22592,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25457,7 +22616,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatistic" */
}
@@ -25470,10 +22628,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25486,8 +22642,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -25501,20 +22655,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwLoadManager/querySvcLoadStatsErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25527,7 +22677,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25553,10 +22702,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25569,8 +22716,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown Exception ");
-
-
break;
@@ -25584,20 +22729,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/activityTestRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25611,7 +22752,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25640,10 +22780,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25656,8 +22794,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
g_warning("Unknown Exception ");
-
-
break;
@@ -25671,20 +22807,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/svcActivityTestReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25696,7 +22828,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25716,10 +22847,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivi
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25732,8 +22861,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivi
g_warning("Unknown Exception ");
-
-
break;
@@ -25747,20 +22874,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/fwFaultReportInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25772,7 +22895,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25793,10 +22915,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25809,8 +22929,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
g_warning("Unknown Exception ");
-
-
break;
@@ -25824,20 +22942,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/fwFaultRecoveryInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25849,7 +22963,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25870,10 +22983,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25886,8 +22997,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
g_warning("Unknown Exception ");
-
-
break;
@@ -25901,20 +23010,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/fwUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -25926,7 +23031,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavail
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -25947,10 +23051,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavail
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -25963,8 +23065,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavail
g_warning("Unknown Exception ");
-
-
break;
@@ -25978,20 +23078,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavail
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/svcUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26002,7 +23098,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavai
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26017,10 +23112,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavai
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26033,8 +23126,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavai
g_warning("Unknown Exception ");
-
-
break;
@@ -26048,20 +23139,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavai
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/appUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26072,7 +23159,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavai
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26087,10 +23173,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavai
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26103,8 +23187,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavai
g_warning("Unknown Exception ");
-
-
break;
@@ -26118,20 +23200,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavai
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/genFaultStatsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26143,7 +23221,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26156,7 +23233,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
@@ -26173,10 +23249,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26189,8 +23263,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
g_warning("Unknown Exception ");
-
-
break;
@@ -26204,20 +23276,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/activityTestErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26229,7 +23297,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26249,10 +23316,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26265,8 +23330,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
g_warning("Unknown Exception ");
-
-
break;
@@ -26280,20 +23343,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityT
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/genFaultStatsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26305,7 +23364,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26332,10 +23390,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26348,8 +23404,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
g_warning("Unknown Exception ");
-
-
break;
@@ -26363,20 +23417,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/genFaultStatsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26391,7 +23441,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26404,7 +23453,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
u_octet4_loop_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -26433,10 +23481,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26449,8 +23495,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
g_warning("Unknown Exception ");
-
-
break;
@@ -26464,20 +23508,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/generateFaultStatsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26488,7 +23528,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26501,7 +23540,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -26512,10 +23550,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26528,8 +23564,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown Exception ");
-
-
break;
@@ -26543,20 +23577,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/appAvailStatusInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26568,7 +23598,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26589,10 +23618,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26605,8 +23632,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailS
g_warning("Unknown Exception ");
-
-
break;
@@ -26620,20 +23645,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/generateFaultStatisticsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26646,7 +23667,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26664,7 +23684,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
@@ -26681,10 +23700,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26697,8 +23714,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown Exception ");
-
-
break;
@@ -26712,20 +23727,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/generateFaultStatisticsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26738,7 +23749,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26770,10 +23780,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26786,8 +23794,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown Exception ");
-
-
break;
@@ -26801,20 +23807,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/generateFaultStatisticsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26826,7 +23828,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26844,7 +23845,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -26855,10 +23855,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26871,8 +23869,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown Exception ");
-
-
break;
@@ -26886,20 +23882,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateF
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcFaultManager/fwAvailStatusInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26911,7 +23903,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailSt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -26932,10 +23923,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailSt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -26948,8 +23937,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailSt
g_warning("Unknown Exception ");
-
-
break;
@@ -26963,20 +23950,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailSt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/activityTestReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -26989,7 +23972,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27015,10 +23997,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27031,8 +24011,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTe
g_warning("Unknown Exception ");
-
-
break;
@@ -27046,20 +24024,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/svcActivityTestRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27073,7 +24047,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27102,10 +24075,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27118,8 +24089,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
g_warning("Unknown Exception ");
-
-
break;
@@ -27133,20 +24102,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/appUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27157,7 +24122,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavail
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27172,10 +24136,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavail
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27188,8 +24150,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavail
g_warning("Unknown Exception ");
-
-
break;
@@ -27203,20 +24163,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavail
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/genFaultStatsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27228,7 +24184,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27241,7 +24196,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
@@ -27258,10 +24212,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27274,8 +24226,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
g_warning("Unknown Exception ");
-
-
break;
@@ -27289,20 +24239,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/svcUnavailableInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27314,7 +24260,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavail
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27335,10 +24280,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavail
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27351,8 +24294,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavail
g_warning("Unknown Exception ");
-
-
break;
@@ -27366,20 +24307,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavail
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/svcActivityTestErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27391,7 +24328,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27411,10 +24347,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27427,8 +24361,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
g_warning("Unknown Exception ");
-
-
break;
@@ -27442,20 +24374,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/genFaultStatsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27470,7 +24398,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27483,7 +24410,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
u_octet4_loop_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -27512,10 +24438,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27528,8 +24452,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
g_warning("Unknown Exception ");
-
-
break;
@@ -27543,20 +24465,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/genFaultStatsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27571,7 +24489,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27610,10 +24527,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27626,8 +24541,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
g_warning("Unknown Exception ");
-
-
break;
@@ -27641,20 +24554,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultSt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/generateFaultStatsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27665,7 +24574,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27678,7 +24586,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
break;
@@ -27689,10 +24596,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27705,8 +24610,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown Exception ");
-
-
break;
@@ -27720,20 +24623,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/generateFaultStatsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27745,7 +24644,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27766,10 +24664,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27782,8 +24678,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown Exception ");
-
-
break;
@@ -27797,20 +24691,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/svcAvailStatusInd:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27822,7 +24712,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailSt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27843,10 +24732,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailSt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27859,8 +24746,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailSt
g_warning("Unknown Exception ");
-
-
break;
@@ -27874,20 +24759,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailSt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/generateFaultStatisticsRecordReq:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27900,7 +24781,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -27918,7 +24798,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
@@ -27935,10 +24814,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -27951,8 +24828,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown Exception ");
-
-
break;
@@ -27966,20 +24841,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/generateFaultStatisticsRecordRes:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -27991,7 +24862,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28009,7 +24879,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStatsRecord" */
break;
@@ -28020,10 +24889,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28036,8 +24903,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown Exception ");
-
-
break;
@@ -28051,20 +24916,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwFaultManager/generateFaultStatisticsRecordErr:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28077,7 +24938,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28103,10 +24963,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28119,8 +24977,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown Exception ");
-
-
break;
@@ -28134,20 +24990,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcOAM/systemDateTimeQuery:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28160,7 +25012,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuer
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28205,8 +25056,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuer
g_warning("Unknown Exception ");
-
-
break;
@@ -28220,20 +25069,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuer
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwOAM/systemDateTimeQuery:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28246,7 +25091,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28291,8 +25135,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery
g_warning("Unknown Exception ");
-
-
break;
@@ -28306,20 +25148,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt/enableHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28331,7 +25169,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHea
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28354,10 +25191,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHea
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28370,8 +25205,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHea
g_warning("Unknown Exception ");
-
-
break;
@@ -28385,20 +25218,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHea
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt/disableHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28409,7 +25238,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28424,10 +25252,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28440,8 +25266,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHe
g_warning("Unknown Exception ");
-
-
break;
@@ -28455,20 +25279,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt/changeInterval:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28480,7 +25300,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28500,10 +25319,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28516,8 +25333,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInt
g_warning("Unknown Exception ");
-
-
break;
@@ -28531,20 +25346,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcHeartBeat/pulse:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28555,7 +25366,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28570,10 +25380,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28586,8 +25394,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -28601,20 +25407,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpFwHeartBeat/pulse:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28625,7 +25427,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28640,10 +25441,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28656,8 +25455,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -28671,20 +25468,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt/enableSvcHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28696,7 +25489,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28719,10 +25511,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28735,8 +25525,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSv
g_warning("Unknown Exception ");
-
-
break;
@@ -28750,20 +25538,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt/disableSvcHeartBeat:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28774,7 +25558,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableS
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28789,10 +25572,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableS
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28805,8 +25586,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableS
g_warning("Unknown Exception ");
-
-
break;
@@ -28820,20 +25599,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableS
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt/changeInterval:1.0
*/
-
static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28845,7 +25620,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeIn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28865,10 +25639,8 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeIn
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -28881,8 +25653,6 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeIn
g_warning("Unknown Exception ");
-
-
break;
@@ -28896,20 +25666,16 @@ static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeIn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/notification/IpFwEventNotification/createNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -28921,7 +25687,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_cr
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -28931,10 +25696,8 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_cr
/* Begin union "org_csapi_fw_TpFwEventCriteria" */
-
decode_org_csapi_fw_TpFwEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpFwEventCriteria" */
break;
@@ -28962,8 +25725,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_cr
g_warning("Unknown Exception ");
-
-
break;
@@ -28977,20 +25738,16 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_cr
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/notification/IpFwEventNotification/destroyNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29002,7 +25759,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_de
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29022,10 +25778,8 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_de
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29038,8 +25792,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_de
g_warning("Unknown Exception ");
-
-
break;
@@ -29053,20 +25805,16 @@ static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_de
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/notification/IpSvcEventNotification/reportNotification:1.0
*/
-
static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29078,7 +25826,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_r
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29088,10 +25835,8 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_r
/* Begin union "org_csapi_fw_TpFwEventInfo" */
-
decode_org_csapi_fw_TpFwEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpFwEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -29107,10 +25852,8 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_r
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29123,8 +25866,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_r
g_warning("Unknown Exception ");
-
-
break;
@@ -29138,20 +25879,16 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_r
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/fw/fw_service/notification/IpSvcEventNotification/notificationTerminated:1.0
*/
-
static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29162,7 +25899,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_n
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29177,10 +25913,8 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_n
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29193,8 +25927,6 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_n
g_warning("Unknown Exception ");
-
-
break;
@@ -29208,20 +25940,16 @@ static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_n
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/routeRes:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29233,7 +25961,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29251,7 +25978,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packe
decode_org_csapi_cc_gccs_TpCallReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReport" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -29267,10 +25993,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29283,8 +26007,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -29298,20 +26020,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/routeErr:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29323,7 +26041,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29341,7 +26058,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packe
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -29357,10 +26073,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29373,8 +26087,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -29388,20 +26100,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/getCallInfoRes:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29413,7 +26121,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29431,7 +26138,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_,
decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallInfoReport" */
break;
@@ -29442,10 +26148,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29458,8 +26162,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -29473,20 +26175,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/getCallInfoErr:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29498,7 +26196,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29516,7 +26213,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -29527,10 +26223,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29543,8 +26237,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -29558,20 +26250,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/superviseCallRes:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29583,7 +26271,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29613,10 +26300,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29629,8 +26314,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -29644,20 +26327,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/superviseCallErr:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29669,7 +26348,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29687,7 +26365,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -29698,10 +26375,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29714,8 +26389,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -29729,20 +26402,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/callFaultDetected:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29755,7 +26424,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29781,10 +26449,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29797,8 +26463,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -29812,20 +26476,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/getMoreDialledDigitsRes:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29839,7 +26499,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29868,10 +26527,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29884,8 +26541,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -29899,20 +26554,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/getMoreDialledDigitsErr:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -29924,7 +26575,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -29942,7 +26592,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -29953,10 +26602,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -29969,8 +26616,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -29984,20 +26629,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCall/callEnded:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30009,7 +26650,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30027,7 +26667,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, pack
decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallEndedReport" */
break;
@@ -30038,10 +26677,8 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, pack
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30054,8 +26691,6 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -30069,20 +26704,16 @@ static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/routeReq:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30098,7 +26729,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30123,7 +26753,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReportRequest" */
}
@@ -30134,7 +26763,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -30143,7 +26771,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -30152,7 +26779,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -30161,7 +26787,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_appInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -30174,10 +26799,8 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
/* Begin union "org_csapi_cc_gccs_TpCallAppInfo" */
-
decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_gccs_TpCallAppInfo" */
}
@@ -30207,8 +26830,6 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
g_warning("Unknown Exception ");
-
-
break;
@@ -30222,20 +26843,16 @@ static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_i
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/release:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30247,7 +26864,6 @@ static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30265,7 +26881,6 @@ static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
break;
@@ -30276,10 +26891,8 @@ static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_in
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30292,8 +26905,6 @@ static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_in
g_warning("Unknown Exception ");
-
-
break;
@@ -30307,20 +26918,16 @@ static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_in
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/deassignCall:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30332,7 +26939,6 @@ static void decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30352,10 +26958,8 @@ static void decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, pack
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30368,8 +26972,6 @@ static void decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -30383,20 +26985,16 @@ static void decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/getCallInfoReq:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30408,7 +27006,6 @@ static void decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30433,10 +27030,8 @@ static void decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, pa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30449,8 +27044,6 @@ static void decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -30464,20 +27057,16 @@ static void decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/setCallChargePlan:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30489,7 +27078,6 @@ static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30507,7 +27095,6 @@ static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallChargePlan" */
break;
@@ -30518,10 +27105,8 @@ static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30534,8 +27119,6 @@ static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -30549,20 +27132,16 @@ static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/setAdviceOfCharge:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30574,7 +27153,6 @@ static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30592,7 +27170,6 @@ static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAoCInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -30608,10 +27185,8 @@ static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30624,8 +27199,6 @@ static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -30639,20 +27212,16 @@ static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/getMoreDialledDigitsReq:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30664,7 +27233,6 @@ static void decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30689,10 +27257,8 @@ static void decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30705,8 +27271,6 @@ static void decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -30720,20 +27284,16 @@ static void decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/superviseCallReq:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30745,7 +27305,6 @@ static void decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30775,10 +27334,8 @@ static void decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30791,8 +27348,6 @@ static void decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -30806,20 +27361,16 @@ static void decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCall/continueProcessing:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30831,7 +27382,6 @@ static void decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30851,10 +27401,8 @@ static void decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30867,8 +27415,6 @@ static void decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -30882,20 +27428,16 @@ static void decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/callAborted:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30907,7 +27449,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30927,10 +27468,8 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -30943,8 +27482,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -30958,20 +27495,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/callEventNotify:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -30983,7 +27516,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -30996,7 +27528,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvb
decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallIdentifier" */
/* Begin struct "org_csapi_cc_gccs_TpCallEventInfo" */
@@ -31005,7 +27536,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvb
decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -31036,8 +27566,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -31051,20 +27579,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/callNotificationInterrupted:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31075,7 +27599,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31090,10 +27613,8 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInt
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31106,8 +27627,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInt
g_warning("Unknown Exception ");
-
-
break;
@@ -31121,20 +27640,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/callNotificationContinued:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31145,7 +27660,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationCon
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31160,10 +27674,8 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationCon
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31176,8 +27688,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationCon
g_warning("Unknown Exception ");
-
-
break;
@@ -31191,20 +27701,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationCon
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/callOverloadEncountered:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31216,7 +27722,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncount
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31236,10 +27741,8 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncount
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31252,8 +27755,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncount
g_warning("Unknown Exception ");
-
-
break;
@@ -31267,20 +27768,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncount
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/callOverloadCeased:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31292,7 +27789,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31312,10 +27808,8 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31328,8 +27822,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(
g_warning("Unknown Exception ");
-
-
break;
@@ -31343,20 +27835,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpAppCallControlManager/abortMultipleCalls:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31370,7 +27858,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31399,10 +27886,8 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31415,8 +27900,6 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(
g_warning("Unknown Exception ");
-
-
break;
@@ -31430,20 +27913,16 @@ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCallControlManager/createCall:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31454,7 +27933,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31478,7 +27956,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *t
decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallIdentifier" */
break;
@@ -31493,8 +27970,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -31508,20 +27983,16 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCallControlManager/enableCallNotification:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31533,7 +28004,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31549,7 +28019,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification
decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallEventCriteria" */
break;
@@ -31577,8 +28046,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -31592,20 +28059,16 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCallControlManager/disableCallNotification:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31617,7 +28080,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotificatio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31637,10 +28099,8 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotificatio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31653,8 +28113,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotificatio
g_warning("Unknown Exception ");
-
-
break;
@@ -31668,20 +28126,16 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotificatio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCallControlManager/setCallLoadControl:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31693,7 +28147,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31708,10 +28161,8 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb
/* Begin union "org_csapi_cc_TpCallLoadControlMechanism" */
-
decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallLoadControlMechanism" */
/* Begin struct "org_csapi_cc_gccs_TpCallTreatment" */
@@ -31720,7 +28171,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb
decode_org_csapi_cc_gccs_TpCallTreatment_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallTreatment" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -31729,7 +28179,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
break;
@@ -31757,8 +28206,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -31772,20 +28219,16 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCallControlManager/changeCallNotification:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31797,7 +28240,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31815,7 +28257,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification
decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallEventCriteria" */
break;
@@ -31826,10 +28267,8 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -31842,8 +28281,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -31857,20 +28294,16 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/gccs/IpCallControlManager/getCriteria:1.0
*/
-
static void decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31883,7 +28316,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31911,7 +28343,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *
decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallEventCriteriaResult" */
}
@@ -31928,8 +28359,6 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -31943,20 +28372,16 @@ static void decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/eventReportRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -31968,7 +28393,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -31986,7 +28410,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb
decode_org_csapi_cc_TpCallEventInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallEventInfo" */
break;
@@ -31997,10 +28420,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32013,8 +28434,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -32028,20 +28447,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/eventReportErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32053,7 +28468,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32071,7 +28485,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -32082,10 +28495,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32098,8 +28509,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -32113,20 +28522,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/attachMediaRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32138,7 +28543,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32158,10 +28562,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32174,8 +28576,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -32189,20 +28589,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/attachMediaErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32214,7 +28610,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32232,7 +28627,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -32243,10 +28637,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32259,8 +28651,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -32274,20 +28664,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/detachMediaRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32299,7 +28685,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32319,10 +28704,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32335,8 +28718,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -32350,20 +28731,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/detachMediaErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32375,7 +28752,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32393,7 +28769,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -32404,10 +28779,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32420,8 +28793,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -32435,20 +28806,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/getInfoRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32460,7 +28827,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32478,7 +28844,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallLegInfoReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallLegInfoReport" */
break;
@@ -32489,10 +28854,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32505,8 +28868,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -32520,20 +28881,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/getInfoErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32545,7 +28902,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32563,7 +28919,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -32574,10 +28929,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32590,8 +28943,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -32605,20 +28956,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/routeErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32630,7 +28977,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32648,7 +28994,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, p
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -32659,10 +29004,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32675,8 +29018,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -32690,20 +29031,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/superviseRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32715,7 +29052,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32745,10 +29081,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32761,8 +29095,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -32776,20 +29108,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/superviseErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32801,7 +29129,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32819,7 +29146,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -32830,10 +29156,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32846,8 +29170,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -32861,20 +29183,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppCallLeg/callLegEnded:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32887,7 +29205,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32913,10 +29230,8 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -32929,8 +29244,6 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -32944,20 +29257,16 @@ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/createCall:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -32968,7 +29277,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -32992,7 +29300,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(
decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */
break;
@@ -33007,8 +29314,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(
g_warning("Unknown Exception ");
-
-
break;
@@ -33022,20 +29327,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/createNotification:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33047,7 +29348,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33063,7 +29363,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotif
decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationRequest" */
break;
@@ -33091,8 +29390,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -33106,20 +29403,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/destroyNotification:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33131,7 +29424,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNoti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33151,10 +29443,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNoti
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -33167,8 +29457,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNoti
g_warning("Unknown Exception ");
-
-
break;
@@ -33182,20 +29470,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNoti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/changeNotification:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33207,7 +29491,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33225,7 +29508,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotif
decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationRequest" */
break;
@@ -33236,10 +29518,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotif
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -33252,8 +29532,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -33267,20 +29545,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/getNotification:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33293,7 +29567,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotifica
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33321,7 +29594,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotifica
decode_org_csapi_cc_TpNotificationRequested_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpNotificationRequested" */
}
@@ -33338,8 +29610,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotifica
g_warning("Unknown Exception ");
-
-
break;
@@ -33353,20 +29623,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotifica
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/setCallLoadControl:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33378,7 +29644,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoad
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33393,10 +29658,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoad
/* Begin union "org_csapi_cc_TpCallLoadControlMechanism" */
-
decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallLoadControlMechanism" */
/* Begin struct "org_csapi_cc_TpCallTreatment" */
@@ -33405,7 +29668,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoad
decode_org_csapi_cc_TpCallTreatment_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallTreatment" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -33414,7 +29676,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoad
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
break;
@@ -33442,8 +29703,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoad
g_warning("Unknown Exception ");
-
-
break;
@@ -33457,20 +29716,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoad
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/enableNotifications:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33482,7 +29737,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33517,8 +29771,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -33532,20 +29784,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/disableNotifications:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33556,7 +29804,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNoti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33571,10 +29818,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNoti
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -33587,8 +29832,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNoti
g_warning("Unknown Exception ");
-
-
break;
@@ -33602,20 +29845,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNoti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCallControlManager/getNextNotification:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33627,7 +29866,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNoti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33653,7 +29891,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNoti
decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpNotificationRequestedSetEntry" */
break;
@@ -33668,8 +29905,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNoti
g_warning("Unknown Exception ");
-
-
break;
@@ -33683,20 +29918,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNoti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/routeReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33710,7 +29941,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33728,7 +29958,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -33737,7 +29966,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_appInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -33750,10 +29978,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
/* Begin union "org_csapi_cc_TpCallAppInfo" */
-
decode_org_csapi_cc_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAppInfo" */
}
@@ -33764,7 +29990,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallLegConnectionProperties" */
break;
@@ -33775,10 +30000,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -33791,8 +30014,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -33806,20 +30027,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/eventReportReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33833,7 +30050,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33858,7 +30074,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_
decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallEventRequest" */
}
@@ -33871,10 +30086,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -33887,8 +30100,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -33902,20 +30113,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/release:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -33928,7 +30135,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -33954,10 +30160,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -33970,8 +30174,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -33985,20 +30187,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/getInfoReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34010,7 +30208,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34035,10 +30232,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, pa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34051,8 +30246,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -34066,20 +30259,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/getCall:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34091,7 +30280,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34117,7 +30305,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packe
decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */
break;
@@ -34132,8 +30319,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -34147,20 +30332,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/attachMediaReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34172,7 +30353,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34192,10 +30372,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34208,8 +30386,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -34223,20 +30399,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/detachMediaReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34248,7 +30420,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34268,10 +30439,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34284,8 +30453,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -34299,20 +30466,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/getCurrentDestinationAddress:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34324,7 +30487,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34350,7 +30512,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvb
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
break;
@@ -34365,8 +30526,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -34380,20 +30539,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/continueProcessing:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34405,7 +30560,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34425,10 +30579,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34441,8 +30593,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -34456,20 +30606,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/setChargePlan:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34481,7 +30627,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34499,7 +30644,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallChargePlan" */
break;
@@ -34510,10 +30654,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34526,8 +30668,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -34541,20 +30681,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/setAdviceOfCharge:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34566,7 +30702,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34584,7 +30719,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb
decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAoCInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -34600,10 +30734,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34616,8 +30748,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -34631,20 +30761,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/superviseReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34656,7 +30782,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34686,10 +30811,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34702,8 +30825,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -34717,20 +30838,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/deassign:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34742,7 +30859,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34762,10 +30878,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, pack
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34778,8 +30892,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -34793,20 +30905,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/getProperties:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34824,7 +30932,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34875,7 +30982,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallLegProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallLegProperty" */
}
@@ -34892,8 +30998,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -34907,20 +31011,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpCallLeg/setProperties:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -34934,7 +31034,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -34959,7 +31058,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallLegProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallLegProperty" */
}
@@ -34972,10 +31070,8 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -34988,8 +31084,6 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -35003,20 +31097,16 @@ static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCall/getInfoRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35028,7 +31118,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35046,7 +31135,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *t
decode_org_csapi_cc_TpCallInfoReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallInfoReport" */
break;
@@ -35057,10 +31145,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35073,8 +31159,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -35088,20 +31172,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCall/getInfoErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35113,7 +31193,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35131,7 +31210,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *t
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -35142,10 +31220,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35158,8 +31234,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -35173,20 +31247,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCall/superviseRes:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35198,7 +31268,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35228,10 +31297,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35244,8 +31311,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -35259,20 +31324,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCall/superviseErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35284,7 +31345,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35302,7 +31362,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -35313,10 +31372,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35329,8 +31386,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -35344,20 +31399,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCall/callEnded:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35369,7 +31420,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35387,7 +31437,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tv
decode_org_csapi_cc_TpCallEndedReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallEndedReport" */
break;
@@ -35398,10 +31447,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35414,8 +31461,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -35429,20 +31474,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCall/createAndRouteCallLegErr:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35454,7 +31495,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegE
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35472,7 +31512,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegE
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
/* Begin struct "org_csapi_cc_TpCallError" */
@@ -35481,7 +31520,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegE
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -35492,10 +31530,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegE
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35508,8 +31544,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegE
g_warning("Unknown Exception ");
-
-
break;
@@ -35523,20 +31557,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegE
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/getCallLegs:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35550,7 +31580,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35583,7 +31612,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
}
@@ -35600,8 +31628,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -35615,20 +31641,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/createCallLeg:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35640,7 +31662,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35669,7 +31690,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *t
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
break;
@@ -35684,8 +31704,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -35699,20 +31717,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/createAndRouteCallLegReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35728,7 +31742,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35753,7 +31766,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallEventRequest" */
}
@@ -35764,7 +31776,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -35773,7 +31784,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_appInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -35786,10 +31796,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
/* Begin union "org_csapi_cc_TpCallAppInfo" */
-
decode_org_csapi_cc_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAppInfo" */
}
@@ -35811,7 +31819,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
break;
@@ -35826,8 +31833,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
g_warning("Unknown Exception ");
-
-
break;
@@ -35841,20 +31846,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/release:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35867,7 +31868,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35893,10 +31893,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35909,8 +31907,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -35924,20 +31920,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/deassignCall:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -35949,7 +31941,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -35969,10 +31960,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -35985,8 +31974,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -36000,20 +31987,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/getInfoReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36025,7 +32008,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36050,10 +32032,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36066,8 +32046,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -36081,20 +32059,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/setChargePlan:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36106,7 +32080,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36124,7 +32097,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *t
decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallChargePlan" */
break;
@@ -36135,10 +32107,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36151,8 +32121,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -36166,20 +32134,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/setAdviceOfCharge:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36191,7 +32155,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36209,7 +32172,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_
decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAoCInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -36225,10 +32187,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36241,8 +32201,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -36256,20 +32214,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpMultiPartyCall/superviseReq:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36281,7 +32235,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36311,10 +32264,8 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36327,8 +32278,6 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -36342,20 +32291,16 @@ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/reportNotification:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36369,7 +32314,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36382,7 +32326,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */
u_octet4_loop_callLegReferenceSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -36398,7 +32341,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
}
@@ -36409,7 +32351,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
decode_org_csapi_cc_TpCallNotificationInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -36428,10 +32369,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
/* Begin union "org_csapi_cc_mpccs_TpAppMultiPartyCallBack" */
-
decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_mpccs_TpAppMultiPartyCallBack" */
break;
@@ -36446,8 +32385,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
g_warning("Unknown Exception ");
-
-
break;
@@ -36461,20 +32398,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/callAborted:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36486,7 +32419,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAbor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36506,10 +32438,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAbor
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36522,8 +32452,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAbor
g_warning("Unknown Exception ");
-
-
break;
@@ -36537,20 +32465,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAbor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/managerInterrupted:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36561,7 +32485,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerI
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36576,10 +32499,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerI
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36592,8 +32513,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerI
g_warning("Unknown Exception ");
-
-
break;
@@ -36607,20 +32526,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerI
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/managerResumed:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36631,7 +32546,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerR
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36646,10 +32560,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerR
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36662,8 +32574,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerR
g_warning("Unknown Exception ");
-
-
break;
@@ -36677,20 +32587,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerR
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/callOverloadEncountered:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncountered(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36702,7 +32608,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36722,10 +32627,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36738,8 +32641,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
g_warning("Unknown Exception ");
-
-
break;
@@ -36753,20 +32654,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/callOverloadCeased:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36778,7 +32675,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36798,10 +32694,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36814,8 +32708,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
g_warning("Unknown Exception ");
-
-
break;
@@ -36829,20 +32721,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOver
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager/abortMultipleCalls:1.0
*/
-
static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36856,7 +32744,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMul
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36885,10 +32772,8 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMul
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36901,8 +32786,6 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMul
g_warning("Unknown Exception ");
-
-
break;
@@ -36916,20 +32799,16 @@ static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMul
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpAppMultiMediaCall/superviseVolumeRes:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -36942,7 +32821,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -36965,7 +32843,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvb
decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpCallSuperviseVolume" */
@@ -36982,10 +32859,8 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -36998,8 +32873,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -37013,20 +32886,16 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpAppMultiMediaCall/superviseVolumeErr:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37038,7 +32907,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37056,7 +32924,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvb
decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallError" */
break;
@@ -37067,10 +32934,8 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37083,8 +32948,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -37098,20 +32961,16 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpAppMultiMediaCallLeg/mediaStreamMonitorRes:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37126,7 +32985,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorR
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37151,7 +33009,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorR
decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMediaStream" */
}
@@ -37170,10 +33027,8 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorR
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37186,8 +33041,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorR
g_warning("Unknown Exception ");
-
-
break;
@@ -37201,20 +33054,16 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorR
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaStream/subtract:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37226,7 +33075,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37246,10 +33094,8 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37262,8 +33108,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -37277,20 +33121,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallLeg/mediaStreamAllow:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37304,7 +33144,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37338,10 +33177,8 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37354,8 +33191,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -37369,20 +33204,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallLeg/mediaStreamMonitorReq:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37396,7 +33227,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37421,7 +33251,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(
decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMediaStreamRequest" */
}
@@ -37434,10 +33263,8 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37450,8 +33277,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(
g_warning("Unknown Exception ");
-
-
break;
@@ -37465,20 +33290,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallLeg/getMediaStreams:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37492,7 +33313,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37525,7 +33345,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff
decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMediaStream" */
}
@@ -37542,8 +33361,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -37557,20 +33374,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCall/superviseVolumeReq:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37582,7 +33395,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37600,7 +33412,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff
decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpCallSuperviseVolume" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -37616,10 +33427,8 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37632,8 +33441,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -37647,20 +33454,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpAppMultiMediaCallControlManager/reportMediaNotification:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37677,7 +33480,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37690,7 +33492,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMultiMediaCallIdentifier" */
u_octet4_loop_callLegReferenceSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -37706,7 +33507,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier" */
}
@@ -37724,7 +33524,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMediaStream" */
}
@@ -37757,10 +33556,8 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
/* Begin union "org_csapi_cc_mmccs_TpAppMultiMediaCallBack" */
-
decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_mmccs_TpAppMultiMediaCallBack" */
break;
@@ -37775,8 +33572,6 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
g_warning("Unknown Exception ");
-
-
break;
@@ -37790,20 +33585,16 @@ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallControlManager/createMediaNotification:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37815,7 +33606,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMedia
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37831,7 +33621,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMedia
decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */
break;
@@ -37859,8 +33648,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMedia
g_warning("Unknown Exception ");
-
-
break;
@@ -37874,20 +33661,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMedia
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallControlManager/destroyMediaNotification:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37899,7 +33682,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMedi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37919,10 +33701,8 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMedi
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -37935,8 +33715,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMedi
g_warning("Unknown Exception ");
-
-
break;
@@ -37950,20 +33728,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMedi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallControlManager/changeMediaNotification:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -37975,7 +33749,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMedia
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -37993,7 +33766,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMedia
decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */
break;
@@ -38004,10 +33776,8 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMedia
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -38020,8 +33790,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMedia
g_warning("Unknown Exception ");
-
-
break;
@@ -38035,20 +33803,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMedia
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/mmccs/IpMultiMediaCallControlManager/getMediaNotification:1.0
*/
-
static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38061,7 +33825,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNot
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38089,7 +33852,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNot
decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMediaNotificationRequested" */
}
@@ -38106,8 +33868,6 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNot
g_warning("Unknown Exception ");
-
-
break;
@@ -38121,20 +33881,16 @@ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNot
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpAppSubConfCall/chairSelection:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38146,7 +33902,6 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38171,10 +33926,8 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -38187,8 +33940,6 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -38202,20 +33953,16 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpAppSubConfCall/floorRequest:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38227,7 +33974,6 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38252,10 +33998,8 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -38268,8 +34012,6 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -38283,20 +34025,16 @@ static void decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpAppConfCall/partyJoined:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38308,7 +34046,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38326,7 +34063,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
/* Begin struct "org_csapi_cc_cccs_TpJoinEventInfo" */
@@ -38335,7 +34071,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_
decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpJoinEventInfo" */
break;
@@ -38361,8 +34096,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -38376,20 +34109,16 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpAppConfCall/leaveMonitorRes:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38401,7 +34130,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38426,10 +34154,8 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -38442,8 +34168,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -38457,20 +34181,16 @@ static void decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCallControlManager/createConference:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38482,7 +34202,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38500,10 +34219,8 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(t
/* Begin union "org_csapi_cc_cccs_TpConfPolicy" */
-
decode_org_csapi_cc_cccs_TpConfPolicy_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_cccs_TpConfPolicy" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -38530,7 +34247,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(t
decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpConfCallIdentifier" */
break;
@@ -38545,8 +34261,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(t
g_warning("Unknown Exception ");
-
-
break;
@@ -38560,20 +34274,16 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCallControlManager/checkResources:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38584,7 +34294,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38597,7 +34306,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvb
decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpConfSearchCriteria" */
break;
@@ -38614,7 +34322,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvb
decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpConfSearchResult" */
break;
@@ -38629,8 +34336,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -38644,20 +34349,16 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCallControlManager/reserveResources:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38671,7 +34372,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38703,10 +34403,8 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(t
/* Begin union "org_csapi_cc_cccs_TpConfPolicy" */
-
decode_org_csapi_cc_cccs_TpConfPolicy_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_cccs_TpConfPolicy" */
break;
@@ -38723,7 +34421,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(t
decode_org_csapi_cc_cccs_TpResourceReservation_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpResourceReservation" */
break;
@@ -38738,8 +34435,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(t
g_warning("Unknown Exception ");
-
-
break;
@@ -38753,20 +34448,16 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCallControlManager/freeResources:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38777,7 +34468,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38790,7 +34480,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbu
decode_org_csapi_cc_cccs_TpResourceReservation_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpResourceReservation" */
break;
@@ -38801,10 +34490,8 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -38817,8 +34504,6 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -38832,20 +34517,16 @@ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpAppConfCallControlManager/conferenceCreated:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38856,7 +34537,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38869,7 +34549,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreat
decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpConfCallIdentifier" */
break;
@@ -38895,8 +34574,6 @@ static void decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreat
g_warning("Unknown Exception ");
-
-
break;
@@ -38910,20 +34587,16 @@ static void decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/splitSubConference:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -38937,7 +34610,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -38980,7 +34652,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *
decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */
break;
@@ -38995,8 +34666,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -39010,20 +34679,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/mergeSubConference:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39035,7 +34700,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39060,10 +34724,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39076,8 +34738,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -39091,20 +34751,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/moveCallLeg:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39116,7 +34772,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39146,10 +34801,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39162,8 +34815,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -39177,20 +34828,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/inspectVideo:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39202,7 +34849,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39227,10 +34873,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39243,8 +34887,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -39258,20 +34900,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/inspectVideoCancel:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39283,7 +34921,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39303,10 +34940,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39319,8 +34954,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -39334,20 +34967,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/appointSpeaker:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39359,7 +34988,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39384,10 +35012,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39400,8 +35026,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -39415,20 +35039,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/chairSelection:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39440,7 +35060,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39465,10 +35084,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39481,8 +35098,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -39496,20 +35111,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpSubConfCall/changeConferencePolicy:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39521,7 +35132,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39536,10 +35146,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff
/* Begin union "org_csapi_cc_cccs_TpConfPolicy" */
-
decode_org_csapi_cc_cccs_TpConfPolicy_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_cccs_TpConfPolicy" */
break;
@@ -39550,10 +35158,8 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39566,8 +35172,6 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -39581,20 +35185,16 @@ static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCall/getSubConferences:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39608,7 +35208,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39641,7 +35240,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb
decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */
}
@@ -39658,8 +35256,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -39673,20 +35269,16 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCall/createSubConference:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39698,7 +35290,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39716,10 +35307,8 @@ static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tv
/* Begin union "org_csapi_cc_cccs_TpConfPolicy" */
-
decode_org_csapi_cc_cccs_TpConfPolicy_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_cccs_TpConfPolicy" */
break;
@@ -39736,7 +35325,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tv
decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */
break;
@@ -39751,8 +35339,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -39766,20 +35352,16 @@ static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCall/leaveMonitorReq:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39791,7 +35373,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39811,10 +35392,8 @@ static void decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39827,8 +35406,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -39842,20 +35419,16 @@ static void decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cc/cccs/IpConfCall/getConferenceAddress:1.0
*/
-
static void decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39867,7 +35440,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39893,7 +35465,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *t
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
break;
@@ -39908,8 +35479,6 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -39923,20 +35492,16 @@ static void decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUI/sendInfoRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -39949,7 +35514,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -39980,10 +35544,8 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_in
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -39996,8 +35558,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_in
g_warning("Unknown Exception ");
-
-
break;
@@ -40011,20 +35571,16 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_in
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUI/sendInfoErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40037,7 +35593,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40068,10 +35623,8 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_in
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40084,8 +35637,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_in
g_warning("Unknown Exception ");
-
-
break;
@@ -40099,20 +35650,16 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_in
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUI/sendInfoAndCollectRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40126,7 +35673,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40166,10 +35712,8 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40182,8 +35726,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -40197,20 +35739,16 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUI/sendInfoAndCollectErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40223,7 +35761,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40254,10 +35791,8 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40270,8 +35805,6 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -40285,20 +35818,16 @@ static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUI/userInteractionFaultDetected:1.0
*/
-
static void decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40311,7 +35840,6 @@ static void decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40337,10 +35865,8 @@ static void decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40353,8 +35879,6 @@ static void decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -40368,20 +35892,16 @@ static void decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/recordMessageRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40394,7 +35914,6 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40430,10 +35949,8 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40446,8 +35963,6 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -40461,20 +35976,16 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/recordMessageErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40487,7 +35998,6 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40518,10 +36028,8 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40534,8 +36042,6 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -40549,20 +36055,16 @@ static void decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/deleteMessageRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40575,7 +36077,6 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40606,10 +36107,8 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40622,8 +36121,6 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -40637,20 +36134,16 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/deleteMessageErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40663,7 +36156,6 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40694,10 +36186,8 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40710,8 +36200,6 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -40725,20 +36213,16 @@ static void decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/abortActionRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40750,7 +36234,6 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40775,10 +36258,8 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, pa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40791,8 +36272,6 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -40806,20 +36285,16 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/abortActionErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40832,7 +36307,6 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40863,10 +36337,8 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, pa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40879,8 +36351,6 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -40894,20 +36364,16 @@ static void decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/getMessageRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -40919,7 +36385,6 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -40939,10 +36404,8 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, pac
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
break;
@@ -40953,10 +36416,8 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, pac
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -40969,8 +36430,6 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -40984,20 +36443,16 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUICall/getMessageErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41010,7 +36465,6 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41041,10 +36495,8 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, pac
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41057,8 +36509,6 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -41072,20 +36522,16 @@ static void decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIManager/userInteractionAborted:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41096,7 +36542,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41109,7 +36554,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *
decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIIdentifier" */
break;
@@ -41120,10 +36564,8 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41136,8 +36578,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -41151,20 +36591,16 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIManager/userInteractionNotificationInterrupted:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41175,7 +36611,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterr
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41190,10 +36625,8 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterr
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41206,8 +36639,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterr
g_warning("Unknown Exception ");
-
-
break;
@@ -41221,20 +36652,16 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterr
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIManager/userInteractionNotificationContinued:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41245,7 +36672,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41260,10 +36686,8 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContin
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41276,8 +36700,6 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContin
g_warning("Unknown Exception ");
-
-
break;
@@ -41291,20 +36713,16 @@ static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContin
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIManager/reportEventNotification:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41316,7 +36734,6 @@ static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41329,7 +36746,6 @@ static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t
decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIIdentifier" */
/* Begin struct "org_csapi_ui_TpUIEventNotificationInfo" */
@@ -41338,7 +36754,6 @@ static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t
decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIEventNotificationInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -41369,8 +36784,6 @@ static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -41384,20 +36797,16 @@ static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIManager/abortMultipleUserInteractions:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41410,7 +36819,6 @@ static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41430,7 +36838,6 @@ static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvb
decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIIdentifier" */
}
@@ -41443,10 +36850,8 @@ static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41459,8 +36864,6 @@ static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -41474,20 +36877,16 @@ static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUI/sendInfoReq:1.0
*/
-
static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41503,7 +36902,6 @@ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41518,10 +36916,8 @@ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -41543,10 +36939,8 @@ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info
/* Begin union "org_csapi_ui_TpUIVariableInfo" */
-
decode_org_csapi_ui_TpUIVariableInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIVariableInfo" */
}
@@ -41586,8 +36980,6 @@ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -41601,20 +36993,16 @@ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUI/sendInfoAndCollectReq:1.0
*/
-
static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41630,7 +37018,6 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41645,10 +37032,8 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -41670,10 +37055,8 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
/* Begin union "org_csapi_ui_TpUIVariableInfo" */
-
decode_org_csapi_ui_TpUIVariableInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIVariableInfo" */
}
@@ -41684,7 +37067,6 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
decode_org_csapi_ui_TpUICollectCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUICollectCriteria" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -41717,8 +37099,6 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -41732,20 +37112,16 @@ static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUI/release:1.0
*/
-
static void decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41757,7 +37133,6 @@ static void decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41777,10 +37152,8 @@ static void decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pin
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41793,8 +37166,6 @@ static void decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pin
g_warning("Unknown Exception ");
-
-
break;
@@ -41808,20 +37179,16 @@ static void decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pin
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUI/setOriginatingAddress:1.0
*/
-
static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41835,7 +37202,6 @@ static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41864,10 +37230,8 @@ static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, pa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -41880,8 +37244,6 @@ static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -41895,20 +37257,16 @@ static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUI/getOriginatingAddress:1.0
*/
-
static void decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -41922,7 +37280,6 @@ static void decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -41963,8 +37320,6 @@ static void decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -41978,20 +37333,16 @@ static void decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUICall/recordMessageReq:1.0
*/
-
static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42003,7 +37354,6 @@ static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42018,10 +37368,8 @@ static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, pac
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
/* Begin struct "org_csapi_ui_TpUIMessageCriteria" */
@@ -42030,7 +37378,6 @@ static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, pac
decode_org_csapi_ui_TpUIMessageCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIMessageCriteria" */
break;
@@ -42058,8 +37405,6 @@ static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -42073,20 +37418,16 @@ static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUICall/deleteMessageReq:1.0
*/
-
static void decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42098,7 +37439,6 @@ static void decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42140,8 +37480,6 @@ static void decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -42155,20 +37493,16 @@ static void decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUICall/abortActionReq:1.0
*/
-
static void decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42180,7 +37514,6 @@ static void decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42205,10 +37538,8 @@ static void decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -42221,8 +37552,6 @@ static void decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -42236,20 +37565,16 @@ static void decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUICall/getMessageReq:1.0
*/
-
static void decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42261,7 +37586,6 @@ static void decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42303,8 +37627,6 @@ static void decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet
g_warning("Unknown Exception ");
-
-
break;
@@ -42318,20 +37640,16 @@ static void decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/createUI:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42342,7 +37660,6 @@ static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42358,7 +37675,6 @@ static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
break;
@@ -42375,7 +37691,6 @@ static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIIdentifier" */
break;
@@ -42390,8 +37705,6 @@ static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_i
g_warning("Unknown Exception ");
-
-
break;
@@ -42405,20 +37718,16 @@ static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_i
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/createUICall:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42429,7 +37738,6 @@ static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42442,10 +37750,8 @@ static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, pack
/* Begin union "org_csapi_ui_TpUITargetObject" */
-
decode_org_csapi_ui_TpUITargetObject_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUITargetObject" */
break;
@@ -42462,7 +37768,6 @@ static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, pack
decode_org_csapi_ui_TpUICallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUICallIdentifier" */
break;
@@ -42477,8 +37782,6 @@ static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -42492,20 +37795,16 @@ static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/createNotification:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42517,7 +37816,6 @@ static void decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42533,7 +37831,6 @@ static void decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_
decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIEventCriteria" */
break;
@@ -42561,8 +37858,6 @@ static void decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -42576,20 +37871,16 @@ static void decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/destroyNotification:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42601,7 +37892,6 @@ static void decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42621,10 +37911,8 @@ static void decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -42637,8 +37925,6 @@ static void decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -42652,20 +37938,16 @@ static void decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/changeNotification:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42677,7 +37959,6 @@ static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42695,7 +37976,6 @@ static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_
decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIEventCriteria" */
break;
@@ -42706,10 +37986,8 @@ static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -42722,8 +38000,6 @@ static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -42737,20 +38013,16 @@ static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/getNotification:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42763,7 +38035,6 @@ static void decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42791,7 +38062,6 @@ static void decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, p
decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIEventCriteriaResult" */
}
@@ -42808,8 +38078,6 @@ static void decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -42823,20 +38091,16 @@ static void decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/enableNotifications:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42848,7 +38112,6 @@ static void decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42883,8 +38146,6 @@ static void decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -42898,20 +38159,16 @@ static void decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIManager/disableNotifications:1.0
*/
-
static void decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42922,7 +38179,6 @@ static void decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -42937,10 +38193,8 @@ static void decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -42953,8 +38207,6 @@ static void decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -42968,20 +38220,16 @@ static void decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/getMessageRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -42993,7 +38241,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43013,10 +38260,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
break;
@@ -43027,10 +38272,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43043,8 +38286,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -43058,20 +38299,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/getMessageErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43084,7 +38321,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43115,10 +38351,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43131,8 +38365,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -43146,20 +38378,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/deleteMessageRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43172,7 +38400,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43203,10 +38430,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43219,8 +38444,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -43234,20 +38457,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/deleteMessageErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43260,7 +38479,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43291,10 +38509,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43307,8 +38523,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -43322,20 +38536,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/putMessageRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43347,7 +38557,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43377,10 +38586,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43393,8 +38600,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -43408,20 +38613,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/putMessageErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43434,7 +38635,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43465,10 +38665,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43481,8 +38679,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -43496,20 +38692,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/getMessageListRes:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43524,7 +38716,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43568,10 +38759,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43584,8 +38773,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -43599,20 +38786,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpAppUIAdminManager/getMessageListErr:1.0
*/
-
static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43625,7 +38808,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43656,10 +38838,8 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -43672,8 +38852,6 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -43687,20 +38865,16 @@ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIAdminManager/getMessageReq:1.0
*/
-
static void decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43712,7 +38886,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43754,8 +38927,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -43769,20 +38940,16 @@ static void decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIAdminManager/putMessageReq:1.0
*/
-
static void decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43794,7 +38961,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43809,10 +38975,8 @@ static void decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
break;
@@ -43840,8 +39004,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -43855,20 +39017,16 @@ static void decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIAdminManager/deleteMessageReq:1.0
*/
-
static void decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43880,7 +39038,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -43922,8 +39079,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -43937,20 +39092,16 @@ static void decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/ui/IpUIAdminManager/getMessageListReq:1.0
*/
-
static void decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -43963,7 +39114,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44005,8 +39155,6 @@ static void decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -44020,20 +39168,16 @@ static void decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppUserLocation/locationReportRes:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44047,7 +39191,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44072,7 +39215,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t
decode_org_csapi_mm_TpUserLocation_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocation" */
}
@@ -44085,10 +39227,8 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44101,8 +39241,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -44116,20 +39254,16 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppUserLocation/locationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44142,7 +39276,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44174,10 +39307,8 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44190,8 +39321,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -44205,20 +39334,16 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppUserLocation/extendedLocationReportRes:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44232,7 +39357,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44257,7 +39381,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(t
decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationExtended" */
}
@@ -44270,10 +39393,8 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44286,8 +39407,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(t
g_warning("Unknown Exception ");
-
-
break;
@@ -44301,20 +39420,16 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppUserLocation/extendedLocationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44327,7 +39442,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44359,10 +39473,8 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44375,8 +39487,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(t
g_warning("Unknown Exception ");
-
-
break;
@@ -44390,20 +39500,16 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppUserLocation/periodicLocationReport:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44417,7 +39523,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44442,7 +39547,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbu
decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationExtended" */
}
@@ -44455,10 +39559,8 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44471,8 +39573,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -44486,20 +39586,16 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppUserLocation/periodicLocationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44512,7 +39608,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44544,10 +39639,8 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44560,8 +39653,6 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(t
g_warning("Unknown Exception ");
-
-
break;
@@ -44575,20 +39666,16 @@ static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpUserLocation/locationReportReq:1.0
*/
-
static void decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44602,7 +39689,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44625,7 +39711,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tv
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -44655,8 +39740,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -44670,20 +39753,16 @@ static void decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpUserLocation/extendedLocationReportReq:1.0
*/
-
static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44697,7 +39776,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44720,7 +39798,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbu
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -44731,7 +39808,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbu
decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationRequest" */
break;
@@ -44759,8 +39835,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -44774,20 +39848,16 @@ static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpUserLocation/periodicLocationReportingStartReq:1.0
*/
-
static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44801,7 +39871,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStart
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44824,7 +39893,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStart
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -44835,7 +39903,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStart
decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationRequest" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -44868,8 +39935,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStart
g_warning("Unknown Exception ");
-
-
break;
@@ -44883,20 +39948,16 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStart
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpUserLocation/periodicLocationReportingStop:1.0
*/
-
static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44907,7 +39968,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -44920,7 +39980,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(
decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */
break;
@@ -44931,10 +39990,8 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -44947,8 +40004,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(
g_warning("Unknown Exception ");
-
-
break;
@@ -44962,20 +40017,16 @@ static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpUserLocation/getNextPeriodicLocationRequest:1.0
*/
-
static void decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -44987,7 +40038,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45013,7 +40063,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest
decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpPeriodicLocationRequestSetEntry" */
break;
@@ -45028,8 +40077,6 @@ static void decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest
g_warning("Unknown Exception ");
-
-
break;
@@ -45043,20 +40090,16 @@ static void decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppTriggeredUserLocation/triggeredLocationReport:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45069,7 +40112,6 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45087,7 +40129,6 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationExtended" */
@@ -45104,10 +40145,8 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45120,8 +40159,6 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
g_warning("Unknown Exception ");
-
-
break;
@@ -45135,20 +40172,16 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpAppTriggeredUserLocation/triggeredLocationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45161,7 +40194,6 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45193,10 +40225,8 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45209,8 +40239,6 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
g_warning("Unknown Exception ");
-
-
break;
@@ -45224,20 +40252,16 @@ static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationR
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpTriggeredUserLocation/triggeredLocationReportingStartReq:1.0
*/
-
static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45253,7 +40277,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45276,7 +40299,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -45287,7 +40309,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationRequest" */
u_octet4_loop_triggers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -45303,7 +40324,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
decode_org_csapi_mm_TpLocationTrigger_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationTrigger" */
}
@@ -45333,8 +40353,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
g_warning("Unknown Exception ");
-
-
break;
@@ -45348,20 +40366,16 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpTriggeredUserLocation/triggeredLocationReportingStop:1.0
*/
-
static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45372,7 +40386,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45385,7 +40398,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */
break;
@@ -45396,10 +40408,8 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45412,8 +40422,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
g_warning("Unknown Exception ");
-
-
break;
@@ -45427,20 +40435,16 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationRepo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ul/IpTriggeredUserLocation/getNextTriggeredLocationRequest:1.0
*/
-
static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45452,7 +40456,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45478,7 +40481,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocat
decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpTriggeredLocationRequestSetEntry" */
break;
@@ -45493,8 +40495,6 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocat
g_warning("Unknown Exception ");
-
-
break;
@@ -45508,20 +40508,16 @@ static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpAppUserLocationCamel/locationReportRes:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45535,7 +40531,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45560,7 +40555,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvb
decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationCamel" */
}
@@ -45573,10 +40567,8 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45589,8 +40581,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -45604,20 +40594,16 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpAppUserLocationCamel/locationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45630,7 +40616,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45662,10 +40647,8 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45678,8 +40661,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -45693,20 +40674,16 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpAppUserLocationCamel/periodicLocationReport:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45720,7 +40697,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45745,7 +40721,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationCamel" */
}
@@ -45758,10 +40733,8 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45774,8 +40747,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
g_warning("Unknown Exception ");
-
-
break;
@@ -45789,20 +40760,16 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpAppUserLocationCamel/periodicLocationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45815,7 +40782,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45847,10 +40813,8 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45863,8 +40827,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
g_warning("Unknown Exception ");
-
-
break;
@@ -45878,20 +40840,16 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationRepor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpAppUserLocationCamel/triggeredLocationReport:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45903,7 +40861,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -45921,7 +40878,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationCamel" */
/* Begin struct "org_csapi_mm_TpLocationTriggerCamel" */
@@ -45930,7 +40886,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
decode_org_csapi_mm_TpLocationTriggerCamel_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationTriggerCamel" */
break;
@@ -45941,10 +40896,8 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -45957,8 +40910,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
g_warning("Unknown Exception ");
-
-
break;
@@ -45972,20 +40923,16 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpAppUserLocationCamel/triggeredLocationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -45998,7 +40945,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46030,10 +40976,8 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -46046,8 +40990,6 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
g_warning("Unknown Exception ");
-
-
break;
@@ -46061,20 +41003,16 @@ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationRepo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/locationReportReq:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46088,7 +41026,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46111,7 +41048,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -46141,8 +41077,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -46156,20 +41090,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/periodicLocationReportingStartReq:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46183,7 +41113,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46206,7 +41135,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -46241,8 +41169,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
g_warning("Unknown Exception ");
-
-
break;
@@ -46256,20 +41182,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/periodicLocationReportingStop:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46280,7 +41202,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46293,7 +41214,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */
break;
@@ -46304,10 +41224,8 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -46320,8 +41238,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
g_warning("Unknown Exception ");
-
-
break;
@@ -46335,20 +41251,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportin
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/triggeredLocationReportingStartReq:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46362,7 +41274,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46385,7 +41296,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -46396,7 +41306,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
decode_org_csapi_mm_TpLocationTriggerCamel_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationTriggerCamel" */
break;
@@ -46424,8 +41333,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
g_warning("Unknown Exception ");
-
-
break;
@@ -46439,20 +41346,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/triggeredLocationReportingStop:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46463,7 +41366,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46476,7 +41378,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */
break;
@@ -46487,10 +41388,8 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -46503,8 +41402,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
g_warning("Unknown Exception ");
-
-
break;
@@ -46518,20 +41415,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReporti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/getNextPeriodicLocationRequest:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46543,7 +41436,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationR
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46569,7 +41461,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationR
decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpPeriodicLocationRequestSetEntry" */
break;
@@ -46584,8 +41475,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationR
g_warning("Unknown Exception ");
-
-
break;
@@ -46599,20 +41488,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationR
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ulc/IpUserLocationCamel/getNextTriggeredLocationRequest:1.0
*/
-
static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46624,7 +41509,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocation
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46650,7 +41534,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocation
decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpTriggeredLocationRequestSetEntry" */
break;
@@ -46665,8 +41548,6 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocation
g_warning("Unknown Exception ");
-
-
break;
@@ -46680,20 +41561,16 @@ static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocation
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ule/IpAppUserLocationEmergency/emergencyLocationReport:1.0
*/
-
static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46705,7 +41582,6 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46723,7 +41599,6 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
decode_org_csapi_mm_TpUserLocationEmergency_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationEmergency" */
break;
@@ -46734,10 +41609,8 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -46750,8 +41623,6 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
g_warning("Unknown Exception ");
-
-
break;
@@ -46765,20 +41636,16 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ule/IpAppUserLocationEmergency/emergencyLocationReportErr:1.0
*/
-
static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46791,7 +41658,6 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46823,10 +41689,8 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -46839,8 +41703,6 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
g_warning("Unknown Exception ");
-
-
break;
@@ -46854,20 +41716,16 @@ static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocation
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ule/IpUserLocationEmergency/emergencyLocationReportReq:1.0
*/
-
static void decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46879,7 +41737,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationRep
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46895,7 +41752,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationRep
decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserLocationEmergencyRequest" */
break;
@@ -46923,8 +41779,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationRep
g_warning("Unknown Exception ");
-
-
break;
@@ -46938,20 +41792,16 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationRep
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ule/IpUserLocationEmergency/subscribeEmergencyLocationReports:1.0
*/
-
static void decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReports(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -46963,7 +41813,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -46998,8 +41847,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLo
g_warning("Unknown Exception ");
-
-
break;
@@ -47013,20 +41860,16 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ule/IpUserLocationEmergency/unSubscribeEmergencyLocationReports:1.0
*/
-
static void decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationReports(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47038,7 +41881,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergency
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47058,10 +41900,8 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergency
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47074,8 +41914,6 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergency
g_warning("Unknown Exception ");
-
-
break;
@@ -47089,20 +41927,16 @@ static void decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergency
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/statusReportRes:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47116,7 +41950,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47141,7 +41974,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb
decode_org_csapi_mm_TpUserStatus_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserStatus" */
}
@@ -47154,10 +41986,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47170,8 +42000,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -47185,20 +42013,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/statusReportErr:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47211,7 +42035,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47243,10 +42066,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47259,8 +42080,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -47274,20 +42093,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/triggeredStatusReport:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47299,7 +42114,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47317,7 +42131,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_
decode_org_csapi_mm_TpUserStatus_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserStatus" */
break;
@@ -47328,10 +42141,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47344,8 +42155,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -47359,20 +42168,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/triggeredStatusReportErr:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47385,7 +42190,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47417,10 +42221,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47433,8 +42235,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -47448,20 +42248,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/extendedStatusReportRes:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47475,7 +42271,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47500,7 +42295,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuf
decode_org_csapi_mm_TpUserStatusExtended_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserStatusExtended" */
}
@@ -47513,10 +42307,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47529,8 +42321,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -47544,20 +42334,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/extendedStatusReportErr:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47570,7 +42356,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47602,10 +42387,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47618,8 +42401,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -47633,20 +42414,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/extTriggeredStatusReport:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47658,7 +42435,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47676,7 +42452,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbu
decode_org_csapi_mm_TpUserStatusExtended_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserStatusExtended" */
break;
@@ -47687,10 +42462,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47703,8 +42476,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -47718,20 +42489,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpAppUserStatus/extTriggeredStatusReportErr:1.0
*/
-
static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47744,7 +42511,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47776,10 +42542,8 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -47792,8 +42556,6 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(t
g_warning("Unknown Exception ");
-
-
break;
@@ -47807,20 +42569,16 @@ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/statusReportReq:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47834,7 +42592,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47857,7 +42614,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -47887,8 +42643,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -47902,20 +42656,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/triggeredStatusReportingStartReq:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -47929,7 +42679,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -47952,7 +42701,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -47982,8 +42730,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq
g_warning("Unknown Exception ");
-
-
break;
@@ -47997,20 +42743,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/triggeredStatusReportingStop:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48021,7 +42763,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48034,7 +42775,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvb
decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */
break;
@@ -48045,10 +42785,8 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -48061,8 +42799,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -48076,20 +42812,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/getNextTriggeredStatusRequest:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48101,7 +42833,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48127,7 +42858,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tv
decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpTriggeredStatusRequestSetEntry" */
break;
@@ -48142,8 +42872,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -48157,20 +42885,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/extendedStatusReportReq:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48184,7 +42908,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48207,7 +42930,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -48237,8 +42959,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -48252,20 +42972,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/extTriggeredStatusReportingStartReq:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48279,7 +42995,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStart
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48302,7 +43017,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStart
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -48332,8 +43046,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStart
g_warning("Unknown Exception ");
-
-
break;
@@ -48347,20 +43059,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStart
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/us/IpUserStatus/extTriggeredStatusReportingStop:1.0
*/
-
static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48371,7 +43079,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48384,7 +43091,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(
decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */
break;
@@ -48395,10 +43101,8 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -48411,8 +43115,6 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(
g_warning("Unknown Exception ");
-
-
break;
@@ -48426,20 +43128,16 @@ static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ub/IpAppUserBinding/triggeredBindingRequestNotification:1.0
*/
-
static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48455,7 +43153,6 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48473,7 +43170,6 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_contactInformation = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -48493,10 +43189,8 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
/* Begin union "org_csapi_mm_TpBindingEntry" */
-
decode_org_csapi_mm_TpBindingEntry_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mm_TpBindingEntry" */
}
@@ -48528,10 +43222,8 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
/* Begin union "org_csapi_mm_TpBindingEntry" */
-
decode_org_csapi_mm_TpBindingEntry_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mm_TpBindingEntry" */
}
@@ -48550,8 +43242,6 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -48565,20 +43255,16 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ub/IpAppUserBinding/triggeredBindingRequestNotificationStartErr:1.0
*/
-
static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48591,7 +43277,6 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48623,10 +43308,8 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -48639,8 +43322,6 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -48654,20 +43335,16 @@ static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ub/IpUserBinding/triggeredBindingRequestNotificationStartReq:1.0
*/
-
static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48683,7 +43360,6 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48706,7 +43382,6 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -48724,7 +43399,6 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpBindingNotificationCriteria" */
}
@@ -48754,8 +43428,6 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
g_warning("Unknown Exception ");
-
-
break;
@@ -48769,20 +43441,16 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mm/ub/IpUserBinding/triggeredBindingRequestNotificationStop:1.0
*/
-
static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48794,7 +43462,6 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48814,10 +43481,8 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -48830,8 +43495,6 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
g_warning("Unknown Exception ");
-
-
break;
@@ -48845,20 +43508,16 @@ static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotifica
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/termcap/IpTerminalCapabilities/getTerminalCapabilities:1.0
*/
-
static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48871,7 +43530,6 @@ static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48901,7 +43559,6 @@ static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilit
decode_org_csapi_termcap_TpTerminalCapabilities_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_termcap_TpTerminalCapabilities" */
break;
@@ -48916,8 +43573,6 @@ static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilit
g_warning("Unknown Exception ");
-
-
break;
@@ -48931,20 +43586,16 @@ static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/termcap/IpAppExtendedTerminalCapabilities/triggeredTerminalCapabilityReport:1.0
*/
-
static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -48958,7 +43609,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -48983,7 +43633,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -48999,7 +43648,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
decode_org_csapi_termcap_TpTerminalCapabilities_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_termcap_TpTerminalCapabilities" */
break;
@@ -49010,10 +43658,8 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49026,8 +43672,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
g_warning("Unknown Exception ");
-
-
break;
@@ -49041,20 +43685,16 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/termcap/IpAppExtendedTerminalCapabilities/triggeredTerminalCapabilityReportErr:1.0
*/
-
static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49069,7 +43709,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49094,7 +43733,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -49113,10 +43751,8 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49129,8 +43765,6 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
g_warning("Unknown Exception ");
-
-
break;
@@ -49144,20 +43778,16 @@ static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggered
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/termcap/IpExtendedTerminalCapabilities/triggeredTerminalCapabilityStartReq:1.0
*/
-
static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49171,7 +43801,6 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49194,7 +43823,6 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -49205,7 +43833,6 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_termcap_TpTerminalCapabilityScope" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -49238,8 +43865,6 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
g_warning("Unknown Exception ");
-
-
break;
@@ -49253,20 +43878,16 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/termcap/IpExtendedTerminalCapabilities/triggeredTerminalCapabilityStop:1.0
*/
-
static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49278,7 +43899,6 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49298,10 +43918,8 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49314,8 +43932,6 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
g_warning("Unknown Exception ");
-
-
break;
@@ -49329,20 +43945,16 @@ static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTer
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSession/connectRes:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49354,7 +43966,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49372,7 +43983,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_,
decode_org_csapi_dsc_TpDataSessionReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionReport" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -49388,10 +43998,8 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49404,8 +44012,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -49419,20 +44025,16 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSession/connectErr:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49444,7 +44046,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49462,7 +44063,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_,
decode_org_csapi_dsc_TpDataSessionError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionError" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -49478,10 +44078,8 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49494,8 +44092,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -49509,20 +44105,16 @@ static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSession/superviseDataSessionRes:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49535,7 +44127,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49558,7 +44149,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff
decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionSuperviseVolume" */
@@ -49575,10 +44165,8 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49591,8 +44179,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -49606,20 +44192,16 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSession/superviseDataSessionErr:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49631,7 +44213,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49649,7 +44230,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff
decode_org_csapi_dsc_TpDataSessionError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionError" */
break;
@@ -49660,10 +44240,8 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49676,8 +44254,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -49691,20 +44267,16 @@ static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSession/dataSessionFaultDetected:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49717,7 +44289,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49743,10 +44314,8 @@ static void decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49759,8 +44328,6 @@ static void decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -49774,20 +44341,16 @@ static void decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSessionControlManager/dataSessionAborted:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49799,7 +44362,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAbort
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49819,10 +44381,8 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAbort
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49835,8 +44395,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAbort
g_warning("Unknown Exception ");
-
-
break;
@@ -49850,20 +44408,16 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAbort
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSessionControlManager/reportNotification:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49875,7 +44429,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotificati
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49888,7 +44441,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotificati
decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionIdentifier" */
/* Begin struct "org_csapi_dsc_TpDataSessionEventInfo" */
@@ -49897,7 +44449,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotificati
decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -49928,8 +44479,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotificati
g_warning("Unknown Exception ");
-
-
break;
@@ -49943,20 +44492,16 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotificati
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSessionControlManager/dataSessionNotificationContinued:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationContinued(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -49967,7 +44512,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -49982,10 +44526,8 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -49998,8 +44540,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -50013,20 +44553,16 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSessionControlManager/dataSessionNotificationInterrupted:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50037,7 +44573,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50052,10 +44587,8 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50068,8 +44601,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
g_warning("Unknown Exception ");
-
-
break;
@@ -50083,20 +44614,16 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotif
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpAppDataSessionControlManager/abortMultipleDataSessions:1.0
*/
-
static void decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50110,7 +44637,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50139,10 +44665,8 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDat
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50155,8 +44679,6 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDat
g_warning("Unknown Exception ");
-
-
break;
@@ -50170,20 +44692,16 @@ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/connectReq:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50197,7 +44715,6 @@ static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50222,7 +44739,6 @@ static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, pac
decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionReportRequest" */
}
@@ -50233,7 +44749,6 @@ static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, pac
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
break;
@@ -50261,8 +44776,6 @@ static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -50276,20 +44789,16 @@ static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/release:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50301,7 +44810,6 @@ static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50319,7 +44827,6 @@ static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet
decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionReleaseCause" */
break;
@@ -50330,10 +44837,8 @@ static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50346,8 +44851,6 @@ static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet
g_warning("Unknown Exception ");
-
-
break;
@@ -50361,20 +44864,16 @@ static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/superviseDataSessionReq:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50386,7 +44885,6 @@ static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50409,7 +44907,6 @@ static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t
decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionSuperviseVolume" */
break;
@@ -50420,10 +44917,8 @@ static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50436,8 +44931,6 @@ static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -50451,20 +44944,16 @@ static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/setDataSessionChargePlan:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50476,7 +44965,6 @@ static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50494,7 +44982,6 @@ static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t
decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionChargePlan" */
break;
@@ -50505,10 +44992,8 @@ static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50521,8 +45006,6 @@ static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -50536,20 +45019,16 @@ static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/setAdviceOfCharge:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50561,7 +45040,6 @@ static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50579,7 +45057,6 @@ static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _
decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAoCInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -50595,10 +45072,8 @@ static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50611,8 +45086,6 @@ static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -50626,20 +45099,16 @@ static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/deassignDataSession:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50651,7 +45120,6 @@ static void decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50671,10 +45139,8 @@ static void decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50687,8 +45153,6 @@ static void decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -50702,20 +45166,16 @@ static void decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSession/continueProcessing:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50727,7 +45187,6 @@ static void decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50747,10 +45206,8 @@ static void decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50763,8 +45220,6 @@ static void decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -50778,20 +45233,16 @@ static void decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/createNotification:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50803,7 +45254,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50819,7 +45269,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(
decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */
break;
@@ -50847,8 +45296,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(
g_warning("Unknown Exception ");
-
-
break;
@@ -50862,20 +45309,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/destroyNotification:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50887,7 +45330,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50907,10 +45349,8 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -50923,8 +45363,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -50938,20 +45376,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/changeNotification:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -50963,7 +45397,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -50981,7 +45414,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(
decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */
break;
@@ -50992,10 +45424,8 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51008,8 +45438,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(
g_warning("Unknown Exception ");
-
-
break;
@@ -51023,20 +45451,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/enableNotifications:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51048,7 +45472,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51083,8 +45506,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications
g_warning("Unknown Exception ");
-
-
break;
@@ -51098,20 +45519,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/disableNotifications:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51122,7 +45539,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_disableNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51137,10 +45553,8 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_disableNotification
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51153,8 +45567,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_disableNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -51168,20 +45580,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_disableNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/getNotifications:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51194,7 +45602,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51222,7 +45629,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tv
decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionEventCriteriaResult" */
}
@@ -51239,8 +45645,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -51254,20 +45658,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/dsc/IpDataSessionControlManager/createNotifications:1.0
*/
-
static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51279,7 +45679,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51295,7 +45694,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications
decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */
break;
@@ -51323,8 +45721,6 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications
g_warning("Unknown Exception ");
-
-
break;
@@ -51338,20 +45734,16 @@ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessagingManager/openMailbox:1.0
*/
-
static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51364,7 +45756,6 @@ static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51377,7 +45768,6 @@ static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U
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);
@@ -51403,7 +45793,6 @@ static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U
decode_org_csapi_gms_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_gms_TpMailboxIdentifier" */
break;
@@ -51418,8 +45807,6 @@ static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -51433,20 +45820,16 @@ static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessagingManager/enableMessagingNotification:1.0
*/
-
static void decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51458,7 +45841,6 @@ static void decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51471,10 +45853,8 @@ static void decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(
/* Begin union "org_csapi_gms_TpMessagingEventCriteria" */
-
decode_org_csapi_gms_TpMessagingEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMessagingEventCriteria" */
break;
@@ -51502,8 +45882,6 @@ static void decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(
g_warning("Unknown Exception ");
-
-
break;
@@ -51517,20 +45895,16 @@ static void decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessagingManager/disableMessagingNotification:1.0
*/
-
static void decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51542,7 +45916,6 @@ static void decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51562,10 +45935,8 @@ static void decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51578,8 +45949,6 @@ static void decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -51593,20 +45962,16 @@ static void decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpAppMessagingManager/mailboxTerminated:1.0
*/
-
static void decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51618,7 +45983,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51641,10 +46005,8 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51657,8 +46019,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -51672,20 +46032,16 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpAppMessagingManager/mailboxFaultDetected:1.0
*/
-
static void decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51698,7 +46054,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51727,10 +46082,8 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51743,8 +46096,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -51758,20 +46109,16 @@ static void decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpAppMessagingManager/messagingEventNotify:1.0
*/
-
static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51783,7 +46130,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51796,10 +46142,8 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbu
/* Begin union "org_csapi_gms_TpMessagingEventInfo" */
-
decode_org_csapi_gms_TpMessagingEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMessagingEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -51815,10 +46159,8 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51831,8 +46173,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -51846,20 +46186,16 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpAppMessagingManager/messagingNotificationTerminated:1.0
*/
-
static void decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51870,7 +46206,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerm
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51885,10 +46220,8 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerm
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51901,8 +46234,6 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerm
g_warning("Unknown Exception ");
-
-
break;
@@ -51916,20 +46247,16 @@ static void decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerm
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/close:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -51941,7 +46268,6 @@ static void decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -51961,10 +46287,8 @@ static void decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -51977,8 +46301,6 @@ static void decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -51992,20 +46314,16 @@ static void decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/lock:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52017,7 +46335,6 @@ static void decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52037,10 +46354,8 @@ static void decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -52053,8 +46368,6 @@ static void decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *
g_warning("Unknown Exception ");
-
-
break;
@@ -52068,20 +46381,16 @@ static void decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/unlock:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52093,7 +46402,6 @@ static void decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52113,10 +46421,8 @@ static void decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -52129,8 +46435,6 @@ static void decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -52144,20 +46448,16 @@ static void decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/getInfoAmount:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52169,7 +46469,6 @@ static void decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52206,8 +46505,6 @@ static void decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -52221,20 +46518,16 @@ static void decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/getInfoProperties:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52248,7 +46541,6 @@ static void decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52288,10 +46580,8 @@ static void decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_,
/* Begin union "org_csapi_gms_TpMailboxInfoProperty" */
-
decode_org_csapi_gms_TpMailboxInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMailboxInfoProperty" */
}
@@ -52308,8 +46598,6 @@ static void decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -52323,20 +46611,16 @@ static void decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/setInfoProperties:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52350,7 +46634,6 @@ static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52377,10 +46660,8 @@ static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_,
/* Begin union "org_csapi_gms_TpMailboxInfoProperty" */
-
decode_org_csapi_gms_TpMailboxInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMailboxInfoProperty" */
}
@@ -52393,10 +46674,8 @@ static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -52409,8 +46688,6 @@ static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -52424,20 +46701,16 @@ static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/openFolder:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52451,7 +46724,6 @@ static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52486,7 +46758,6 @@ static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_
decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_gms_TpMailboxFolderIdentifier" */
break;
@@ -52501,8 +46772,6 @@ static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_
g_warning("Unknown Exception ");
-
-
break;
@@ -52516,20 +46785,16 @@ static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/createFolder:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52543,7 +46808,6 @@ static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52572,10 +46836,8 @@ static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -52588,8 +46850,6 @@ static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -52603,20 +46863,16 @@ static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailbox/remove:1.0
*/
-
static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52629,7 +46885,6 @@ static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52642,7 +46897,6 @@ static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info
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);
@@ -52662,10 +46916,8 @@ static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -52678,8 +46930,6 @@ static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -52693,20 +46943,16 @@ static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessage/getInfoAmount:1.0
*/
-
static void decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52720,7 +46966,6 @@ static void decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52766,8 +47011,6 @@ static void decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -52781,20 +47024,16 @@ static void decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessage/getInfoProperties:1.0
*/
-
static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52810,7 +47049,6 @@ static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52859,10 +47097,8 @@ static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_,
/* Begin union "org_csapi_gms_TpMessageInfoProperty" */
-
decode_org_csapi_gms_TpMessageInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMessageInfoProperty" */
}
@@ -52879,8 +47115,6 @@ static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -52894,20 +47128,16 @@ static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessage/setInfoProperties:1.0
*/
-
static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -52923,7 +47153,6 @@ static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -52959,10 +47188,8 @@ static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_,
/* Begin union "org_csapi_gms_TpMessageInfoProperty" */
-
decode_org_csapi_gms_TpMessageInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMessageInfoProperty" */
}
@@ -52975,10 +47202,8 @@ static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -52991,8 +47216,6 @@ static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -53006,20 +47229,16 @@ static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessage/remove:1.0
*/
-
static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53033,7 +47252,6 @@ static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53062,10 +47280,8 @@ static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -53078,8 +47294,6 @@ static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -53093,20 +47307,16 @@ static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMessage/getContent:1.0
*/
-
static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53120,7 +47330,6 @@ static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53170,8 +47379,6 @@ static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_
g_warning("Unknown Exception ");
-
-
break;
@@ -53185,20 +47392,16 @@ static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/getInfoAmount:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53210,7 +47413,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53247,8 +47449,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -53262,20 +47462,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/getInfoProperties:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53289,7 +47485,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53329,10 +47524,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb
/* Begin union "org_csapi_gms_TpFolderInfoProperty" */
-
decode_org_csapi_gms_TpFolderInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpFolderInfoProperty" */
}
@@ -53349,8 +47542,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -53364,20 +47555,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/setInfoProperties:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53391,7 +47578,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53418,10 +47604,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb
/* Begin union "org_csapi_gms_TpFolderInfoProperty" */
-
decode_org_csapi_gms_TpFolderInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpFolderInfoProperty" */
}
@@ -53434,10 +47618,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -53450,8 +47632,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -53465,20 +47645,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/putMessage:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53494,7 +47670,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53525,10 +47700,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, p
/* Begin union "org_csapi_gms_TpMessageInfoProperty" */
-
decode_org_csapi_gms_TpMessageInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_gms_TpMessageInfoProperty" */
}
@@ -53541,10 +47714,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -53557,8 +47728,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -53572,20 +47741,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/getMessage:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53599,7 +47764,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53643,8 +47807,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -53658,20 +47820,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/close:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53683,7 +47841,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53708,10 +47865,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -53724,8 +47879,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet
g_warning("Unknown Exception ");
-
-
break;
@@ -53739,20 +47892,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/gms/IpMailboxFolder/remove:1.0
*/
-
static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53766,7 +47915,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53795,10 +47943,8 @@ static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -53811,8 +47957,6 @@ static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packe
g_warning("Unknown Exception ");
-
-
break;
@@ -53826,20 +47970,16 @@ static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getVPrPID:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53852,7 +47992,6 @@ static void decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53888,8 +48027,6 @@ static void decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -53903,20 +48040,16 @@ static void decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getSlaID:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -53929,7 +48062,6 @@ static void decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -53965,8 +48097,6 @@ static void decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *
g_warning("Unknown Exception ");
-
-
break;
@@ -53980,20 +48110,16 @@ static void decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getStatus:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54005,7 +48131,6 @@ static void decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54038,8 +48163,6 @@ static void decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -54053,20 +48176,16 @@ static void decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getProvisionedQoSInfo:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54077,7 +48196,6 @@ static void decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54098,7 +48216,6 @@ static void decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_,
decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpProvisionedQoSInfo" */
break;
@@ -54113,8 +48230,6 @@ static void decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -54128,20 +48243,16 @@ static void decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getValidityInfo:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54152,7 +48263,6 @@ static void decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54173,7 +48283,6 @@ static void decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet
decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpValidityInfo" */
break;
@@ -54188,8 +48297,6 @@ static void decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet
g_warning("Unknown Exception ");
-
-
break;
@@ -54203,20 +48310,16 @@ static void decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getPipeQoSInfo:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54227,7 +48330,6 @@ static void decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54248,7 +48350,6 @@ static void decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpPipeQoSInfo" */
break;
@@ -54263,8 +48364,6 @@ static void decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_
g_warning("Unknown Exception ");
-
-
break;
@@ -54278,20 +48377,16 @@ static void decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrP/getDsCodepoint:1.0
*/
-
static void decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54302,7 +48397,6 @@ static void decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54323,7 +48417,6 @@ static void decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpDsCodepoint_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpDsCodepoint" */
break;
@@ -54338,8 +48431,6 @@ static void decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_
g_warning("Unknown Exception ");
-
-
break;
@@ -54353,20 +48444,16 @@ static void decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrN/getVPrPList:1.0
*/
-
static void decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54381,7 +48468,6 @@ static void decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54426,8 +48512,6 @@ static void decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_inf
g_warning("Unknown Exception ");
-
-
break;
@@ -54441,20 +48525,16 @@ static void decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_inf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrN/getVPrP:1.0
*/
-
static void decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54467,7 +48547,6 @@ static void decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54506,8 +48585,6 @@ static void decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *p
g_warning("Unknown Exception ");
-
-
break;
@@ -54521,20 +48598,16 @@ static void decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrN/createVPrP:1.0
*/
-
static void decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54545,7 +48618,6 @@ static void decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54578,8 +48650,6 @@ static void decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -54593,20 +48663,16 @@ static void decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpVPrN/deleteVPrP:1.0
*/
-
static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54619,7 +48685,6 @@ static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54643,10 +48708,8 @@ static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -54659,8 +48722,6 @@ static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -54674,20 +48735,16 @@ static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSMenu/getTemplate:1.0
*/
-
static void decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54700,7 +48757,6 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54739,8 +48795,6 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_
g_warning("Unknown Exception ");
-
-
break;
@@ -54754,20 +48808,16 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSMenu/getTemplateList:1.0
*/
-
static void decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54782,7 +48832,6 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54827,8 +48876,6 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -54842,20 +48889,16 @@ static void decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpConnectivityManager/getQoSMenu:1.0
*/
-
static void decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54866,7 +48909,6 @@ static void decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54896,8 +48938,6 @@ static void decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -54911,20 +48951,16 @@ static void decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpConnectivityManager/getEnterpriseNetwork:1.0
*/
-
static void decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -54935,7 +48971,6 @@ static void decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -54965,8 +49000,6 @@ static void decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -54980,20 +49013,16 @@ static void decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/getTemplateType:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55006,7 +49035,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55042,8 +49070,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55057,20 +49083,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/getDescription:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55083,7 +49105,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55119,8 +49140,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55134,20 +49153,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/setSlaID:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55160,7 +49175,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55184,10 +49198,8 @@ static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -55200,8 +49212,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet
g_warning("Unknown Exception ");
-
-
break;
@@ -55215,20 +49225,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/getPipeQoSInfo:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55239,7 +49245,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55260,7 +49265,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_,
decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpPipeQoSInfo" */
break;
@@ -55275,8 +49279,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55290,20 +49292,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/setPipeQoSInfo:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55314,7 +49312,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55327,7 +49324,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_,
decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpPipeQoSInfo" */
break;
@@ -55338,10 +49334,8 @@ static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -55354,8 +49348,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55369,20 +49361,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/getValidityInfo:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55393,7 +49381,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55414,7 +49401,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_,
decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpValidityInfo" */
break;
@@ -55429,8 +49415,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55444,20 +49428,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/setValidityInfo:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55468,7 +49448,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55481,7 +49460,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_,
decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpValidityInfo" */
break;
@@ -55492,10 +49470,8 @@ static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -55508,8 +49484,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55523,20 +49497,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/setProvisionedQoSInfo:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55547,7 +49517,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55560,7 +49529,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tv
decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpProvisionedQoSInfo" */
break;
@@ -55571,10 +49539,8 @@ static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -55587,8 +49553,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -55602,20 +49566,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/getProvisionedQoSInfo:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55626,7 +49586,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55647,7 +49606,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tv
decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpProvisionedQoSInfo" */
break;
@@ -55662,8 +49620,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -55677,20 +49633,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpQoSTemplate/getDsCodepoint:1.0
*/
-
static void decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55701,7 +49653,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55722,7 +49673,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_,
decode_org_csapi_cm_TpDsCodepoint_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpDsCodepoint" */
break;
@@ -55737,8 +49687,6 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -55752,20 +49700,16 @@ static void decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetwork/getSiteList:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55780,7 +49724,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55825,8 +49768,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -55840,20 +49781,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetwork/getVPrN:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55864,7 +49801,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55894,8 +49830,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -55909,20 +49843,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetwork/getSite:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -55935,7 +49865,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -55974,8 +49903,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -55989,20 +49916,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetworkSite/getSAPList:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56017,7 +49940,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56062,8 +49984,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -56077,20 +49997,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetworkSite/getSiteID:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56103,7 +50019,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56139,8 +50054,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -56154,20 +50067,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetworkSite/getSiteLocation:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56180,7 +50089,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56216,8 +50124,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -56231,20 +50137,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetworkSite/getSiteDescription:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56257,7 +50159,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56293,8 +50194,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -56308,20 +50207,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetworkSite/getIPSubnet:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56332,7 +50227,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56353,7 +50247,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tv
decode_org_csapi_cm_TpIPSubnet_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpIPSubnet" */
break;
@@ -56368,8 +50261,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -56383,20 +50274,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cm/IpEnterpriseNetworkSite/getSAPIPSubnet:1.0
*/
-
static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56409,7 +50296,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56439,7 +50325,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t
decode_org_csapi_cm_TpIPSubnet_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpIPSubnet" */
break;
@@ -56454,8 +50339,6 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -56469,20 +50352,16 @@ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/reportNotification:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56494,7 +50373,6 @@ static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56507,7 +50385,6 @@ static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t
decode_org_csapi_am_TpChargingEventInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpChargingEventInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -56523,10 +50400,8 @@ static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -56539,8 +50414,6 @@ static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -56554,20 +50427,16 @@ static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryBalanceRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56581,7 +50450,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56606,7 +50474,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tv
decode_org_csapi_am_TpBalance_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalance" */
}
@@ -56619,10 +50486,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -56635,8 +50500,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -56650,20 +50513,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryBalanceErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56676,7 +50535,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56702,10 +50560,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -56718,8 +50574,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -56733,20 +50587,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/retrieveTransactionHistoryRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56760,7 +50610,6 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56785,7 +50634,6 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRe
decode_org_csapi_am_TpTransactionHistory_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpTransactionHistory" */
}
@@ -56798,10 +50646,8 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -56814,8 +50660,6 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRe
g_warning("Unknown Exception ");
-
-
break;
@@ -56829,20 +50673,16 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/retrieveTransactionHistoryErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56855,7 +50695,6 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryEr
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56881,10 +50720,8 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryEr
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -56897,8 +50734,6 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryEr
g_warning("Unknown Exception ");
-
-
break;
@@ -56912,20 +50747,16 @@ static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryEr
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryBalanceExpiryDateRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -56939,7 +50770,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -56964,7 +50794,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tv
decode_org_csapi_am_TpBalanceExpiryDate_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalanceExpiryDate" */
}
@@ -56977,10 +50806,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -56993,8 +50820,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -57008,20 +50833,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryBalanceExpiryDateErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57034,7 +50855,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57060,10 +50880,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57076,8 +50894,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -57091,20 +50907,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/updateBalanceRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57116,7 +50928,6 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57134,7 +50945,6 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *t
decode_org_csapi_am_TpBalance_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalance" */
break;
@@ -57145,10 +50955,8 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57161,8 +50969,6 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -57176,20 +50982,16 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/updateBalanceErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57202,7 +51004,6 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57228,10 +51029,8 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57244,8 +51043,6 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -57259,20 +51056,16 @@ static void decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/createVoucherRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57284,7 +51077,6 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57309,10 +51101,8 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57325,8 +51115,6 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -57340,20 +51128,16 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/createVoucherErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57366,7 +51150,6 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57392,10 +51175,8 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57408,8 +51189,6 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -57423,20 +51202,16 @@ static void decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/destroyVoucherRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57448,7 +51223,6 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57473,10 +51247,8 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57489,8 +51261,6 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -57504,20 +51274,16 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/destroyVoucherErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57530,7 +51296,6 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57561,10 +51326,8 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57577,8 +51340,6 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -57592,20 +51353,16 @@ static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryVoucherRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57617,7 +51374,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57635,7 +51391,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tv
decode_org_csapi_am_TpVoucher_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpVoucher" */
break;
@@ -57646,10 +51401,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57662,8 +51415,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -57677,20 +51428,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryVoucherErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57703,7 +51450,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57734,10 +51480,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57750,8 +51494,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -57765,20 +51507,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryUserVouchersRes:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57792,7 +51530,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57817,7 +51554,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_
decode_org_csapi_am_TpVoucher_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpVoucher" */
}
@@ -57830,10 +51566,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57846,8 +51580,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -57861,20 +51593,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAppAccountManager/queryUserVouchersErr:1.0
*/
-
static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57887,7 +51615,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57913,10 +51640,8 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -57929,8 +51654,6 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -57944,20 +51667,16 @@ static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/createNotification:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -57969,7 +51688,6 @@ static void decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -57985,7 +51703,6 @@ static void decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tv
decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpChargingEventCriteria" */
break;
@@ -58013,8 +51730,6 @@ static void decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -58028,20 +51743,16 @@ static void decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/destroyNotification:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58053,7 +51764,6 @@ static void decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58073,10 +51783,8 @@ static void decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -58089,8 +51797,6 @@ static void decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -58104,20 +51810,16 @@ static void decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/queryBalanceReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58131,7 +51833,6 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58151,7 +51852,6 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -58181,8 +51881,6 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -58196,20 +51894,16 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/changeNotification:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58221,7 +51915,6 @@ static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58239,7 +51932,6 @@ static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tv
decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpChargingEventCriteria" */
break;
@@ -58250,10 +51942,8 @@ static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -58266,8 +51956,6 @@ static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -58281,20 +51969,16 @@ static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/getNotification:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58307,7 +51991,6 @@ static void decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58335,7 +52018,6 @@ static void decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _
decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpChargingEventCriteriaResult" */
}
@@ -58352,8 +52034,6 @@ static void decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -58367,20 +52047,16 @@ static void decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/retrieveTransactionHistoryReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58392,7 +52068,6 @@ static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58405,7 +52080,6 @@ static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(t
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpTimeInterval" */
@@ -58414,7 +52088,6 @@ static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(t
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
break;
@@ -58442,8 +52115,6 @@ static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(t
g_warning("Unknown Exception ");
-
-
break;
@@ -58457,20 +52128,16 @@ static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/enableNotifications:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58482,7 +52149,6 @@ static void decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58517,8 +52183,6 @@ static void decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -58532,20 +52196,16 @@ static void decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/disableNotifications:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58556,7 +52216,6 @@ static void decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58571,10 +52230,8 @@ static void decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -58587,8 +52244,6 @@ static void decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -58602,20 +52257,16 @@ static void decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/queryBalanceExpiryDateReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58629,7 +52280,6 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58649,7 +52299,6 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuf
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -58679,8 +52328,6 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -58694,20 +52341,16 @@ static void decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/updateBalanceReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58720,7 +52363,6 @@ static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58733,7 +52375,6 @@ static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -58747,7 +52388,6 @@ static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb
decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalanceInfo" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -58780,8 +52420,6 @@ static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -58795,20 +52433,16 @@ static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/createVoucherReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58820,7 +52454,6 @@ static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58833,7 +52466,6 @@ static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_am_TpBalanceInfo" */
@@ -58842,7 +52474,6 @@ static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb
decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalanceInfo" */
break;
@@ -58870,8 +52501,6 @@ static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -58885,20 +52514,16 @@ static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/destroyVoucherReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58910,7 +52535,6 @@ static void decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -58947,8 +52571,6 @@ static void decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -58962,20 +52584,16 @@ static void decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/queryVoucherReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -58987,7 +52605,6 @@ static void decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59024,8 +52641,6 @@ static void decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -59039,20 +52654,16 @@ static void decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/am/IpAccountManager/queryUserVouchersReq:1.0
*/
-
static void decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59064,7 +52675,6 @@ static void decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59077,7 +52687,6 @@ static void decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
break;
@@ -59105,8 +52714,6 @@ static void decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -59120,20 +52727,16 @@ static void decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/creditAmountErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59146,7 +52749,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59182,10 +52784,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59198,8 +52798,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -59213,20 +52811,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/creditAmountRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59238,7 +52832,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59261,7 +52854,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *t
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
/* Begin struct "org_csapi_cs_TpChargingPrice" */
@@ -59270,7 +52862,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *t
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -59286,10 +52877,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59302,8 +52891,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -59317,20 +52904,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/creditUnitErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59343,7 +52926,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59379,10 +52961,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59395,8 +52975,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -59410,20 +52988,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/creditUnitRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59439,7 +53013,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59469,7 +53042,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -59487,7 +53059,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -59505,10 +53076,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59521,8 +53090,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -59536,20 +53103,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/debitAmountErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59562,7 +53125,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59598,10 +53160,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59614,8 +53174,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -59629,20 +53187,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/debitAmountRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59654,7 +53208,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59677,7 +53230,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tv
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
/* Begin struct "org_csapi_cs_TpChargingPrice" */
@@ -59686,7 +53238,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tv
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -59702,10 +53253,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59718,8 +53267,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -59733,20 +53280,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/debitUnitErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59759,7 +53302,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59795,10 +53337,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59811,8 +53351,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -59826,20 +53364,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/debitUnitRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59855,7 +53389,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -59885,7 +53418,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -59903,7 +53435,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -59921,10 +53452,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -59937,8 +53466,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -59952,20 +53479,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directCreditAmountErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -59978,7 +53501,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60014,10 +53536,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60030,8 +53550,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -60045,20 +53563,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directCreditAmountRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60070,7 +53584,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60093,7 +53606,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuf
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -60109,10 +53621,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60125,8 +53635,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -60140,20 +53648,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directCreditUnitErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60166,7 +53670,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60202,10 +53705,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60218,8 +53719,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -60233,20 +53732,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directCreditUnitRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60260,7 +53755,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60290,7 +53784,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -60308,10 +53801,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60324,8 +53815,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -60339,20 +53828,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directDebitAmountErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60365,7 +53850,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60401,10 +53885,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60417,8 +53899,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -60432,20 +53912,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directDebitAmountRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60457,7 +53933,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60480,7 +53955,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -60496,10 +53970,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60512,8 +53984,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -60527,20 +53997,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directDebitUnitErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60553,7 +54019,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60589,10 +54054,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60605,8 +54068,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -60620,20 +54081,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/directDebitUnitRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60647,7 +54104,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60677,7 +54133,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -60695,10 +54150,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60711,8 +54164,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -60726,20 +54177,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/extendLifeTimeErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60752,7 +54199,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60778,10 +54224,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60794,8 +54238,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -60809,20 +54251,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/extendLifeTimeRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60834,7 +54272,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60859,10 +54296,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60875,8 +54310,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -60890,20 +54323,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/rateErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -60916,7 +54345,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -60942,10 +54370,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -60958,8 +54384,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -60973,20 +54397,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/rateRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61000,7 +54420,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61025,7 +54444,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_,
decode_org_csapi_cs_TpPriceVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpPriceVolume" */
}
@@ -61043,10 +54461,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61059,8 +54475,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -61074,20 +54488,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/reserveAmountErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61100,7 +54510,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61136,10 +54545,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61152,8 +54559,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -61167,20 +54572,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/reserveAmountRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61192,7 +54593,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61215,7 +54615,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -61236,10 +54635,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61252,8 +54649,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -61267,20 +54662,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/reserveUnitErr:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61293,7 +54684,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61329,10 +54719,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61345,8 +54733,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -61360,20 +54746,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/reserveUnitRes:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61387,7 +54769,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61417,7 +54798,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tv
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -61440,10 +54820,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61456,8 +54834,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -61471,20 +54847,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingSession/sessionEnded:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61497,7 +54869,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61523,10 +54894,8 @@ static void decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61539,8 +54908,6 @@ static void decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -61554,20 +54921,16 @@ static void decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/creditAmountReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61580,7 +54943,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61598,7 +54960,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
/* Begin struct "org_csapi_cs_TpChargingPrice" */
@@ -61607,7 +54968,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -61628,10 +54988,8 @@ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61644,8 +55002,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -61659,20 +55015,16 @@ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/creditUnitReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61687,7 +55039,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61705,7 +55056,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -61721,7 +55071,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -61744,10 +55093,8 @@ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61760,8 +55107,6 @@ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -61775,20 +55120,16 @@ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/debitAmountReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61801,7 +55142,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61819,7 +55159,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
/* Begin struct "org_csapi_cs_TpChargingPrice" */
@@ -61828,7 +55167,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -61849,10 +55187,8 @@ static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61865,8 +55201,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -61880,20 +55214,16 @@ static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/debitUnitReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -61908,7 +55238,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -61926,7 +55255,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -61942,7 +55270,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -61965,10 +55292,8 @@ static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -61981,8 +55306,6 @@ static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -61996,20 +55319,16 @@ static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/directCreditAmountReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62023,7 +55342,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62041,7 +55359,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -62057,7 +55374,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -62068,7 +55384,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -62084,10 +55399,8 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62100,8 +55413,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -62115,20 +55426,16 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/directCreditUnitReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62144,7 +55451,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62162,7 +55468,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -62178,7 +55483,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -62196,7 +55500,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -62214,10 +55517,8 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62230,8 +55531,6 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -62245,20 +55544,16 @@ static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/directDebitAmountReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62272,7 +55567,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62290,7 +55584,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -62306,7 +55599,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -62317,7 +55609,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -62333,10 +55624,8 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62349,8 +55638,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -62364,20 +55651,16 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/directDebitUnitReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62393,7 +55676,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62411,7 +55693,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -62427,7 +55708,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -62445,7 +55725,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -62463,10 +55742,8 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62479,8 +55756,6 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -62494,20 +55769,16 @@ static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/extendLifeTimeReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62519,7 +55790,6 @@ static void decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62539,10 +55809,8 @@ static void decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62555,8 +55823,6 @@ static void decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -62570,20 +55836,16 @@ static void decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/getAmountLeft:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62595,7 +55857,6 @@ static void decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62621,7 +55882,6 @@ static void decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
break;
@@ -62636,8 +55896,6 @@ static void decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -62651,20 +55909,16 @@ static void decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/getLifeTimeLeft:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62676,7 +55930,6 @@ static void decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62713,8 +55966,6 @@ static void decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -62728,20 +55979,16 @@ static void decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/getUnitLeft:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62755,7 +56002,6 @@ static void decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62788,7 +56034,6 @@ static void decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_,
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -62805,8 +56050,6 @@ static void decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -62820,20 +56063,16 @@ static void decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/rateReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62847,7 +56086,6 @@ static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62872,7 +56110,6 @@ static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, pac
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -62885,10 +56122,8 @@ static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, pac
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62901,8 +56136,6 @@ static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -62916,20 +56149,16 @@ static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/release:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -62941,7 +56170,6 @@ static void decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -62966,10 +56194,8 @@ static void decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, pac
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -62982,8 +56208,6 @@ static void decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -62997,20 +56221,16 @@ static void decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/reserveAmountReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63024,7 +56244,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63042,7 +56261,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -63058,7 +56276,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -63069,7 +56286,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
/* Begin struct "org_csapi_cs_TpChargingPrice" */
@@ -63078,7 +56294,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -63094,10 +56309,8 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63110,8 +56323,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -63125,20 +56336,16 @@ static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingSession/reserveUnitReq:1.0
*/
-
static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63154,7 +56361,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63172,7 +56378,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpApplicationDescription" */
u_octet4_loop_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -63188,7 +56393,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingParameter" */
}
@@ -63206,7 +56410,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
@@ -63224,10 +56427,8 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63240,8 +56441,6 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
g_warning("Unknown Exception ");
-
-
break;
@@ -63255,20 +56454,16 @@ static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingManager/sessionAborted:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63280,7 +56475,6 @@ static void decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63300,10 +56494,8 @@ static void decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63316,8 +56508,6 @@ static void decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tv
g_warning("Unknown Exception ");
-
-
break;
@@ -63331,20 +56521,16 @@ static void decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpAppChargingManager/abortMultipleChargingSessions:1.0
*/
-
static void decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63358,7 +56544,6 @@ static void decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63387,10 +56572,8 @@ static void decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63403,8 +56586,6 @@ static void decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessio
g_warning("Unknown Exception ");
-
-
break;
@@ -63418,20 +56599,16 @@ static void decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingManager/createChargingSession:1.0
*/
-
static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63444,7 +56621,6 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63469,7 +56645,6 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
decode_org_csapi_cs_TpMerchantAccountID_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpMerchantAccountID" */
/* Begin struct "org_csapi_TpAddress" */
@@ -63478,7 +56653,6 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_cs_TpCorrelationID" */
@@ -63487,7 +56661,6 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
decode_org_csapi_cs_TpCorrelationID_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpCorrelationID" */
break;
@@ -63504,7 +56677,6 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
decode_org_csapi_cs_TpChargingSessionID_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingSessionID" */
break;
@@ -63519,8 +56691,6 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -63534,20 +56704,16 @@ static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/cs/IpChargingManager/createSplitChargingSession:1.0
*/
-
static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63562,7 +56728,6 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63587,7 +56752,6 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
decode_org_csapi_cs_TpMerchantAccountID_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpMerchantAccountID" */
u_octet4_loop_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -63603,7 +56767,6 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -63614,7 +56777,6 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
decode_org_csapi_cs_TpCorrelationID_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpCorrelationID" */
break;
@@ -63631,7 +56793,6 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
decode_org_csapi_cs_TpChargingSessionID_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingSessionID" */
break;
@@ -63646,8 +56807,6 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -63661,20 +56820,16 @@ static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpAppPolicyDomain/reportNotification:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63686,7 +56841,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotificat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63704,7 +56858,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotificat
decode_org_csapi_policy_TpPolicyEvent_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyEvent" */
break;
@@ -63715,10 +56868,8 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotificat
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63731,8 +56882,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotificat
g_warning("Unknown Exception ");
-
-
break;
@@ -63746,20 +56895,16 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotificat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpAppPolicyDomain/evalPolicyRes:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63773,7 +56918,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63798,7 +56942,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(t
decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyNameValue" */
}
@@ -63811,10 +56954,8 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63827,8 +56968,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(t
g_warning("Unknown Exception ");
-
-
break;
@@ -63842,20 +56981,16 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpAppPolicyDomain/evalPolicyErr:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63867,7 +57002,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63892,10 +57026,8 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -63908,8 +57040,6 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(t
g_warning("Unknown Exception ");
-
-
break;
@@ -63923,20 +57053,16 @@ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpPolicyEvalManager/evalPolicy:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -63953,7 +57079,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -63991,7 +57116,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tv
decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyNameValue" */
}
@@ -64017,7 +57141,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tv
decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyNameValue" */
}
@@ -64034,8 +57157,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -64049,20 +57170,16 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpPolicyEvalManager/evalPolicyReq:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64078,7 +57195,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64116,7 +57232,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq
decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyNameValue" */
}
@@ -64149,8 +57264,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq
g_warning("Unknown Exception ");
-
-
break;
@@ -64164,20 +57277,16 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpPolicyEvalManager/abortEvalPolicyReq:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64191,7 +57300,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPoli
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64220,10 +57328,8 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPoli
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -64236,8 +57342,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPoli
g_warning("Unknown Exception ");
-
-
break;
@@ -64251,20 +57355,16 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPoli
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpPolicyEvalManager/generateEvent:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64279,7 +57379,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64317,7 +57416,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -64330,10 +57428,8 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -64346,8 +57442,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent
g_warning("Unknown Exception ");
-
-
break;
@@ -64361,20 +57455,16 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpPolicyEvalManager/createNotification:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64390,7 +57480,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotific
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64452,8 +57541,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotific
g_warning("Unknown Exception ");
-
-
break;
@@ -64467,20 +57554,16 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotific
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/evaluation/IpPolicyEvalManager/destroyNotification:1.0
*/
-
static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64496,7 +57579,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotifi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64534,10 +57616,8 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotifi
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -64550,8 +57630,6 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotifi
g_warning("Unknown Exception ");
-
-
break;
@@ -64565,20 +57643,16 @@ static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotifi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicy/getAttribute:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64591,7 +57665,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64621,7 +57694,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
break;
@@ -64636,8 +57708,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -64651,20 +57721,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicy/setAttribute:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64675,7 +57741,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64688,7 +57753,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
break;
@@ -64699,10 +57763,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -64715,8 +57777,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -64730,20 +57790,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicy/getAttributes:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64760,7 +57816,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64806,7 +57861,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -64823,8 +57877,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -64838,20 +57890,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicy/setAttributes:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64864,7 +57912,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -64884,7 +57931,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -64897,10 +57943,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -64913,8 +57957,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -64928,20 +57970,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyIterator/getList:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -64957,7 +57995,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65012,8 +58049,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -65027,20 +58062,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getParentRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65051,7 +58082,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRep
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65081,8 +58111,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRep
g_warning("Unknown Exception ");
-
-
break;
@@ -65096,20 +58124,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRep
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/createRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65122,7 +58146,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createReposi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65161,8 +58184,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createReposi
g_warning("Unknown Exception ");
-
-
break;
@@ -65176,20 +58197,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createReposi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65202,7 +58219,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65241,8 +58257,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
g_warning("Unknown Exception ");
-
-
break;
@@ -65256,20 +58270,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/removeRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65282,7 +58292,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeReposi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65306,10 +58315,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeReposi
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -65322,8 +58329,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeReposi
g_warning("Unknown Exception ");
-
-
break;
@@ -65337,20 +58342,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeReposi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getRepositoryCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65362,7 +58363,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65394,8 +58394,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
g_warning("Unknown Exception ");
-
-
break;
@@ -65409,20 +58407,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getRepositoryIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65433,7 +58427,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65463,8 +58456,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
g_warning("Unknown Exception ");
-
-
break;
@@ -65478,20 +58469,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/createCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65506,7 +58493,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65541,7 +58527,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondit
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -65569,8 +58554,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondit
g_warning("Unknown Exception ");
-
-
break;
@@ -65584,20 +58567,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65610,7 +58589,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65649,8 +58627,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
g_warning("Unknown Exception ");
-
-
break;
@@ -65664,20 +58640,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/removeCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65690,7 +58662,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65714,10 +58685,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondit
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -65730,8 +58699,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondit
g_warning("Unknown Exception ");
-
-
break;
@@ -65745,20 +58712,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getConditionCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65770,7 +58733,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65802,8 +58764,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
g_warning("Unknown Exception ");
-
-
break;
@@ -65817,20 +58777,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getConditionIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65841,7 +58797,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65871,8 +58826,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
g_warning("Unknown Exception ");
-
-
break;
@@ -65886,20 +58839,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/createAction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -65914,7 +58863,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -65949,7 +58897,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -65977,8 +58924,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction
g_warning("Unknown Exception ");
-
-
break;
@@ -65992,20 +58937,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getAction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66018,7 +58959,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66057,8 +58997,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -66072,20 +59010,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/removeAction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66098,7 +59032,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66122,10 +59055,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -66138,8 +59069,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction
g_warning("Unknown Exception ");
-
-
break;
@@ -66153,20 +59082,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getActionCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66178,7 +59103,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCou
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66210,8 +59134,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCou
g_warning("Unknown Exception ");
-
-
break;
@@ -66225,20 +59147,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCou
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRepository/getActionIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66249,7 +59167,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIte
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66279,8 +59196,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIte
g_warning("Unknown Exception ");
-
-
break;
@@ -66294,20 +59209,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIte
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getParentGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66318,7 +59229,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66348,8 +59258,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -66363,20 +59271,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getParentDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66387,7 +59291,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66417,8 +59320,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -66432,20 +59333,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/createCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66460,7 +59357,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66495,7 +59391,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tv
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -66523,8 +59418,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -66538,20 +59431,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66564,7 +59453,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66603,8 +59491,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -66618,20 +59504,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/removeCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66644,7 +59526,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66668,10 +59549,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -66684,8 +59563,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -66699,20 +59576,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getConditionCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66724,7 +59597,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66756,8 +59628,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(
g_warning("Unknown Exception ");
-
-
break;
@@ -66771,20 +59641,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getConditionIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66795,7 +59661,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66825,8 +59690,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterat
g_warning("Unknown Exception ");
-
-
break;
@@ -66840,20 +59703,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/createAction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66868,7 +59727,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -66903,7 +59761,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuf
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -66931,8 +59788,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -66946,20 +59801,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getAction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -66972,7 +59823,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67011,8 +59861,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -67026,20 +59874,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/removeAction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67052,7 +59896,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67076,10 +59919,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -67092,8 +59933,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -67107,20 +59946,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getActionCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67132,7 +59967,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67164,8 +59998,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -67179,20 +60011,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getActionIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67203,7 +60031,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67233,8 +60060,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(
g_warning("Unknown Exception ");
-
-
break;
@@ -67248,20 +60073,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/setValidityPeriodConditionByName:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67274,7 +60095,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67298,10 +60118,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -67314,8 +60132,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
g_warning("Unknown Exception ");
-
-
break;
@@ -67329,20 +60145,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/setValidityPeriodCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67353,7 +60165,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67371,10 +60182,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -67387,8 +60196,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
g_warning("Unknown Exception ");
-
-
break;
@@ -67402,20 +60209,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodC
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getValidityPeriodCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67426,7 +60229,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodC
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67456,8 +60258,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodC
g_warning("Unknown Exception ");
-
-
break;
@@ -67471,20 +60271,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodC
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/unsetValidityPeriodCondition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67495,7 +60291,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPerio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67510,10 +60305,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPerio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -67526,8 +60319,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPerio
g_warning("Unknown Exception ");
-
-
break;
@@ -67541,20 +60332,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPerio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/setConditionList:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67567,7 +60354,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67587,7 +60373,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(t
decode_org_csapi_policy_TpPolicyConditionListElement_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyConditionListElement" */
}
@@ -67600,10 +60385,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -67616,8 +60399,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(t
g_warning("Unknown Exception ");
-
-
break;
@@ -67631,20 +60412,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getConditionList:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67657,7 +60434,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67685,7 +60461,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(t
decode_org_csapi_policy_TpPolicyConditionListElement_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyConditionListElement" */
}
@@ -67702,8 +60477,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(t
g_warning("Unknown Exception ");
-
-
break;
@@ -67717,20 +60490,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/setActionList:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67743,7 +60512,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67763,7 +60531,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbu
decode_org_csapi_policy_TpPolicyActionListElement_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyActionListElement" */
}
@@ -67776,10 +60543,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -67792,8 +60557,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -67807,20 +60570,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyRule/getActionList:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67833,7 +60592,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67861,7 +60619,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbu
decode_org_csapi_policy_TpPolicyActionListElement_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyActionListElement" */
}
@@ -67878,8 +60635,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -67893,20 +60648,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/createDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67919,7 +60670,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -67958,8 +60708,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -67973,20 +60721,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/getDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -67999,7 +60743,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68038,8 +60781,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -68053,20 +60794,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/removeDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68079,7 +60816,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68103,10 +60839,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -68119,8 +60853,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -68134,20 +60866,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/getDomainCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68159,7 +60887,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68191,8 +60918,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(
g_warning("Unknown Exception ");
-
-
break;
@@ -68206,20 +60931,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/getDomainIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68230,7 +60951,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68260,8 +60980,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterat
g_warning("Unknown Exception ");
-
-
break;
@@ -68275,20 +60993,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/findMatchingDomains:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68305,7 +61019,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDom
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68325,7 +61038,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDom
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -68368,8 +61080,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDom
g_warning("Unknown Exception ");
-
-
break;
@@ -68383,20 +61093,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDom
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/createRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_createRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68409,7 +61115,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createRepositor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68448,8 +61153,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createRepositor
g_warning("Unknown Exception ");
-
-
break;
@@ -68463,20 +61166,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createRepositor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/getRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68489,7 +61188,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68528,8 +61226,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(t
g_warning("Unknown Exception ");
-
-
break;
@@ -68543,20 +61239,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/removeRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68569,7 +61261,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepositor
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68593,10 +61284,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepositor
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -68609,8 +61298,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepositor
g_warning("Unknown Exception ");
-
-
break;
@@ -68624,20 +61311,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepositor
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/getRepositoryCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68649,7 +61332,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68681,8 +61363,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCo
g_warning("Unknown Exception ");
-
-
break;
@@ -68696,20 +61376,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/getRepositoryIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68720,7 +61396,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68750,8 +61425,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIt
g_warning("Unknown Exception ");
-
-
break;
@@ -68765,20 +61438,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/startTransaction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_startTransaction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68789,7 +61458,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_startTransactio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68804,10 +61472,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_startTransactio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -68820,8 +61486,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_startTransactio
g_warning("Unknown Exception ");
-
-
break;
@@ -68835,20 +61499,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_startTransactio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/commitTransaction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68860,7 +61520,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransacti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68892,8 +61551,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransacti
g_warning("Unknown Exception ");
-
-
break;
@@ -68907,20 +61564,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransacti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyManager/abortTransaction:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransaction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -68931,7 +61584,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransactio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -68946,10 +61598,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransactio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -68962,8 +61612,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransactio
g_warning("Unknown Exception ");
-
-
break;
@@ -68977,20 +61625,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransactio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getParentDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69001,7 +61645,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69031,8 +61674,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(t
g_warning("Unknown Exception ");
-
-
break;
@@ -69046,20 +61687,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getParentGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69070,7 +61707,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69100,8 +61736,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -69115,20 +61749,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/createGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69141,7 +61771,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69180,8 +61809,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -69195,20 +61822,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69221,7 +61844,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69260,8 +61882,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -69275,20 +61895,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/removeGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69301,7 +61917,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69325,10 +61940,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -69341,8 +61954,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -69356,20 +61967,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getGroupCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69381,7 +61988,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69413,8 +62019,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -69428,20 +62032,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getGroupIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69452,7 +62052,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69482,8 +62081,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(
g_warning("Unknown Exception ");
-
-
break;
@@ -69497,20 +62094,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/createRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69523,7 +62116,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69562,8 +62154,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -69577,20 +62167,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69603,7 +62189,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69642,8 +62227,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -69657,20 +62240,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/removeRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69683,7 +62262,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69707,10 +62285,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -69723,8 +62299,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -69738,20 +62312,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getRuleCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69763,7 +62333,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69795,8 +62364,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -69810,20 +62377,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyGroup/getRuleIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69834,7 +62397,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69864,8 +62426,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(t
g_warning("Unknown Exception ");
-
-
break;
@@ -69879,20 +62439,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyEventDefinition/setRequiredAttributes:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69905,7 +62461,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequ
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -69925,7 +62480,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequ
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -69938,10 +62492,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequ
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -69954,8 +62506,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequ
g_warning("Unknown Exception ");
-
-
break;
@@ -69969,20 +62519,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequ
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyEventDefinition/setOptionalAttributes:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -69995,7 +62541,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOpti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70015,7 +62560,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOpti
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -70028,10 +62572,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOpti
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -70044,8 +62586,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOpti
g_warning("Unknown Exception ");
-
-
break;
@@ -70059,20 +62599,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOpti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyEventDefinition/getRequiredAttributes:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70085,7 +62621,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequ
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70113,7 +62648,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequ
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -70130,8 +62664,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequ
g_warning("Unknown Exception ");
-
-
break;
@@ -70145,20 +62677,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequ
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyEventDefinition/getOptionalAttributes:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70171,7 +62699,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOpti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70199,7 +62726,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOpti
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -70216,8 +62742,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOpti
g_warning("Unknown Exception ");
-
-
break;
@@ -70231,20 +62755,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOpti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyEventDefinition/getParentDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70255,7 +62775,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getPare
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70285,8 +62804,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getPare
g_warning("Unknown Exception ");
-
-
break;
@@ -70300,20 +62817,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getPare
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyCondition/getParentRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70324,7 +62837,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70354,8 +62866,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepo
g_warning("Unknown Exception ");
-
-
break;
@@ -70369,20 +62879,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyCondition/getParentRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70393,7 +62899,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70423,8 +62928,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule
g_warning("Unknown Exception ");
-
-
break;
@@ -70438,20 +62941,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyAction/getParentRepository:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70462,7 +62961,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentReposit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70492,8 +62990,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentReposit
g_warning("Unknown Exception ");
-
-
break;
@@ -70507,20 +63003,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentReposit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyAction/getParentRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70531,7 +63023,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70561,8 +63052,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -70576,20 +63065,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/setInputVariables:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70604,7 +63089,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVaria
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70637,10 +63121,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVaria
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -70653,8 +63135,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVaria
g_warning("Unknown Exception ");
-
-
break;
@@ -70668,20 +63148,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVaria
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/setOutputVariables:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70696,7 +63172,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVari
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70729,10 +63204,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVari
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -70745,8 +63218,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVari
g_warning("Unknown Exception ");
-
-
break;
@@ -70760,20 +63231,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVari
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/getInputVariables:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70788,7 +63255,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVaria
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70833,8 +63299,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVaria
g_warning("Unknown Exception ");
-
-
break;
@@ -70848,20 +63312,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVaria
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/getOutputVariables:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70876,7 +63336,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVari
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70921,8 +63380,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVari
g_warning("Unknown Exception ");
-
-
break;
@@ -70936,20 +63393,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVari
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/setGroupNames:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -70964,7 +63417,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -70997,10 +63449,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -71013,8 +63463,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames
g_warning("Unknown Exception ");
-
-
break;
@@ -71028,20 +63476,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/setPolicyRoles:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71056,7 +63500,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRole
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71089,10 +63532,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRole
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -71105,8 +63546,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRole
g_warning("Unknown Exception ");
-
-
break;
@@ -71120,20 +63559,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRole
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/getGroupNames:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71148,7 +63583,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71193,8 +63627,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames
g_warning("Unknown Exception ");
-
-
break;
@@ -71208,20 +63640,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/getPolicyRoles:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71236,7 +63664,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRole
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71281,8 +63708,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRole
g_warning("Unknown Exception ");
-
-
break;
@@ -71296,20 +63721,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRole
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicySignature/getParentDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71320,7 +63741,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDoma
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71350,8 +63770,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDoma
g_warning("Unknown Exception ");
-
-
break;
@@ -71365,20 +63783,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDoma
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getParentDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71389,7 +63803,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71419,8 +63832,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(
g_warning("Unknown Exception ");
-
-
break;
@@ -71434,20 +63845,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71460,7 +63867,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71499,8 +63905,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -71514,20 +63918,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71540,7 +63940,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71579,8 +63978,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -71594,20 +63991,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeDomain:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71620,7 +64013,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71644,10 +64036,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -71660,8 +64050,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -71675,20 +64063,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getDomainCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71700,7 +64084,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71732,8 +64115,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(t
g_warning("Unknown Exception ");
-
-
break;
@@ -71747,20 +64128,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getDomainIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71771,7 +64148,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterato
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71801,8 +64177,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterato
g_warning("Unknown Exception ");
-
-
break;
@@ -71816,20 +64190,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterato
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71842,7 +64212,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71881,8 +64250,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -71896,20 +64263,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -71922,7 +64285,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -71961,8 +64323,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -71976,20 +64336,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeGroup:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72002,7 +64358,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72026,10 +64381,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -72042,8 +64395,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -72057,20 +64408,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getGroupCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72082,7 +64429,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72114,8 +64460,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -72129,20 +64473,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getGroupIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72153,7 +64493,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72183,8 +64522,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator
g_warning("Unknown Exception ");
-
-
break;
@@ -72198,20 +64535,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72224,7 +64557,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72263,8 +64595,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -72278,20 +64608,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72304,7 +64630,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72343,8 +64668,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -72358,20 +64681,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeRule:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72384,7 +64703,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72408,10 +64726,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -72424,8 +64740,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -72439,20 +64753,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getRuleCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72464,7 +64774,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72496,8 +64805,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -72511,20 +64818,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getRuleIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72535,7 +64838,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72565,8 +64867,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(
g_warning("Unknown Exception ");
-
-
break;
@@ -72580,20 +64880,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createEventDefinition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72610,7 +64906,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72685,8 +64980,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefin
g_warning("Unknown Exception ");
-
-
break;
@@ -72700,20 +64993,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefin
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getEventDefinition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72726,7 +65015,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72765,8 +65053,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
g_warning("Unknown Exception ");
-
-
break;
@@ -72780,20 +65066,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeEventDefinition:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72806,7 +65088,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72830,10 +65111,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefin
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -72846,8 +65125,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefin
g_warning("Unknown Exception ");
-
-
break;
@@ -72861,20 +65138,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefin
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getEventDefinitionCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72886,7 +65159,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72918,8 +65190,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
g_warning("Unknown Exception ");
-
-
break;
@@ -72933,20 +65203,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getEventDefinitionIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -72957,7 +65223,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -72987,8 +65252,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
g_warning("Unknown Exception ");
-
-
break;
@@ -73002,20 +65265,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefiniti
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createVariableSet:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73028,7 +65287,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73052,10 +65310,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -73068,8 +65324,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSe
g_warning("Unknown Exception ");
-
-
break;
@@ -73083,20 +65337,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getVariableSet:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73111,7 +65361,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73148,7 +65397,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(t
decode_org_csapi_policy_TpPolicyVar_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyVar" */
}
@@ -73165,8 +65413,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(t
g_warning("Unknown Exception ");
-
-
break;
@@ -73180,20 +65426,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeVariableSet:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73206,7 +65448,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73230,10 +65471,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -73246,8 +65485,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSe
g_warning("Unknown Exception ");
-
-
break;
@@ -73261,20 +65498,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getVariableSetCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73286,7 +65519,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73318,8 +65550,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCo
g_warning("Unknown Exception ");
-
-
break;
@@ -73333,20 +65563,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getVariableSetIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73357,7 +65583,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73387,8 +65612,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIt
g_warning("Unknown Exception ");
-
-
break;
@@ -73402,20 +65625,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createVariable:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73428,7 +65647,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73456,10 +65674,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(t
/* Begin union "org_csapi_policy_TpPolicyType" */
-
decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_policy_TpPolicyType" */
break;
@@ -73470,10 +65686,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -73486,8 +65700,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(t
g_warning("Unknown Exception ");
-
-
break;
@@ -73501,20 +65713,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/setVariableValue:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73527,7 +65735,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73554,7 +65761,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue
get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header);
-
break;
case Reply:
@@ -73563,10 +65769,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -73579,8 +65783,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue
g_warning("Unknown Exception ");
-
-
break;
@@ -73594,20 +65796,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getVariableType:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73620,7 +65818,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73656,10 +65853,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(
/* Begin union "org_csapi_policy_TpPolicyType" */
-
decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_policy_TpPolicyType" */
break;
@@ -73674,8 +65869,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(
g_warning("Unknown Exception ");
-
-
break;
@@ -73689,20 +65882,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getVariableValue:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73715,7 +65904,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73750,7 +65938,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue
get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header);
-
break;
case USER_EXCEPTION:
@@ -73763,8 +65950,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue
g_warning("Unknown Exception ");
-
-
break;
@@ -73778,20 +65963,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getVariable:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73804,7 +65985,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73843,7 +66023,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbu
decode_org_csapi_policy_TpPolicyVar_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyVar" */
break;
@@ -73858,8 +66037,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -73873,20 +66050,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeVariable:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73899,7 +66072,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -73932,10 +66104,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -73948,8 +66118,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(t
g_warning("Unknown Exception ");
-
-
break;
@@ -73963,20 +66131,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/createSignature:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -73989,7 +66153,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74028,8 +66191,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(
g_warning("Unknown Exception ");
-
-
break;
@@ -74043,20 +66204,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getSignature:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74069,7 +66226,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74108,8 +66264,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -74123,20 +66277,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/removeSignature:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74149,7 +66299,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74173,10 +66322,8 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -74189,8 +66336,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(
g_warning("Unknown Exception ");
-
-
break;
@@ -74204,20 +66349,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getSignatureCount:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74229,7 +66370,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCoun
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74261,8 +66401,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCoun
g_warning("Unknown Exception ");
-
-
break;
@@ -74276,20 +66414,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCoun
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/policy/provisioning/IpPolicyDomain/getSignatureIterator:1.0
*/
-
static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74300,7 +66434,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIter
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74330,8 +66463,6 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIter
g_warning("Unknown Exception ");
-
-
break;
@@ -74345,20 +66476,16 @@ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIter
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/createIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74376,7 +66503,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIden
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74432,10 +66558,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIden
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -74448,8 +66572,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIden
g_warning("Unknown Exception ");
-
-
break;
@@ -74463,20 +66585,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIden
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/deleteIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74492,7 +66610,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIden
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74530,10 +66647,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIden
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -74546,8 +66661,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIden
g_warning("Unknown Exception ");
-
-
break;
@@ -74561,20 +66674,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIden
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/isIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74590,7 +66699,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74645,8 +66753,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity
g_warning("Unknown Exception ");
-
-
break;
@@ -74660,20 +66766,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/createGroupIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74691,7 +66793,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGrou
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74747,10 +66848,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGrou
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -74763,8 +66862,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGrou
g_warning("Unknown Exception ");
-
-
break;
@@ -74778,20 +66875,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGrou
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/deleteGroupIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74807,7 +66900,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGrou
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74845,10 +66937,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGrou
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -74861,8 +66951,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGrou
g_warning("Unknown Exception ");
-
-
break;
@@ -74876,20 +66964,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGrou
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/addToGroup:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -74905,7 +66989,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -74952,10 +67035,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -74968,8 +67049,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup
g_warning("Unknown Exception ");
-
-
break;
@@ -74983,20 +67062,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/removeFromGroup:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75012,7 +67087,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFrom
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75059,10 +67133,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFrom
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -75075,8 +67147,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFrom
g_warning("Unknown Exception ");
-
-
break;
@@ -75090,20 +67160,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFrom
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/listMembers:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75121,7 +67187,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMember
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75189,8 +67254,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMember
g_warning("Unknown Exception ");
-
-
break;
@@ -75204,20 +67267,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMember
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/isGroupIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75233,7 +67292,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIde
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75288,8 +67346,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIde
g_warning("Unknown Exception ");
-
-
break;
@@ -75303,20 +67359,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIde
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/listGroupMembership:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75334,7 +67386,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupM
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75402,8 +67453,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupM
g_warning("Unknown Exception ");
-
-
break;
@@ -75417,20 +67466,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupM
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/addAlias:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75446,7 +67491,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75493,10 +67537,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -75509,8 +67551,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(t
g_warning("Unknown Exception ");
-
-
break;
@@ -75524,20 +67564,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/removeAliases:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75553,7 +67589,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAlia
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75600,10 +67635,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAlia
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -75616,8 +67649,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAlia
g_warning("Unknown Exception ");
-
-
break;
@@ -75631,20 +67662,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAlia
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/listAliases:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75662,7 +67689,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliase
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75730,8 +67756,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliase
g_warning("Unknown Exception ");
-
-
break;
@@ -75745,20 +67769,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliase
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/lookupByAlias:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75774,7 +67794,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75833,8 +67852,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAl
g_warning("Unknown Exception ");
-
-
break;
@@ -75848,20 +67865,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/associateTypes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75879,7 +67892,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateT
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -75935,10 +67947,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateT
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -75951,8 +67961,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateT
g_warning("Unknown Exception ");
-
-
break;
@@ -75966,20 +67974,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateT
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/disassociateTypes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -75997,7 +68001,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassocia
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76053,10 +68056,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassocia
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -76069,8 +68070,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassocia
g_warning("Unknown Exception ");
-
-
break;
@@ -76084,20 +68083,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassocia
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/listTypesOfIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76115,7 +68110,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesO
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76183,8 +68177,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesO
g_warning("Unknown Exception ");
-
-
break;
@@ -76198,20 +68190,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesO
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/hasType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76227,7 +68215,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76291,8 +68278,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -76306,20 +68291,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/getIdentityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76339,7 +68320,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76417,7 +68397,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentit
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -76434,8 +68413,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentit
g_warning("Unknown Exception ");
-
-
break;
@@ -76449,20 +68426,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityManagement/setIdentityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76480,7 +68453,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76518,7 +68490,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentit
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -76545,10 +68516,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentit
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -76561,8 +68530,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentit
g_warning("Unknown Exception ");
-
-
break;
@@ -76576,20 +68543,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/createAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76607,7 +68570,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76663,10 +68625,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -76679,8 +68639,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(t
g_warning("Unknown Exception ");
-
-
break;
@@ -76694,20 +68652,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/deleteAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76723,7 +68677,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76761,10 +68714,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -76777,8 +68728,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(t
g_warning("Unknown Exception ");
-
-
break;
@@ -76792,20 +68741,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/isAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76821,7 +68766,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76876,8 +68820,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -76891,20 +68833,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/enableCapabilities:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -76922,7 +68860,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabil
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -76978,10 +68915,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabil
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -76994,8 +68929,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabil
g_warning("Unknown Exception ");
-
-
break;
@@ -77009,20 +68942,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabil
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/disableCapabilities:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77040,7 +68969,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77096,10 +69024,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabi
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -77112,8 +69038,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabi
g_warning("Unknown Exception ");
-
-
break;
@@ -77127,20 +69051,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/listEnabledCapabilities:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77158,7 +69078,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77226,8 +69145,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCa
g_warning("Unknown Exception ");
-
-
break;
@@ -77241,20 +69158,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/listAllCapabilities:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77272,7 +69185,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77340,8 +69252,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabi
g_warning("Unknown Exception ");
-
-
break;
@@ -77355,20 +69265,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabi
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/isCapableOf:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77384,7 +69290,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77448,8 +69353,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(t
g_warning("Unknown Exception ");
-
-
break;
@@ -77463,20 +69366,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/associateTypes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77494,7 +69393,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateType
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77550,10 +69448,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateType
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -77566,8 +69462,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateType
g_warning("Unknown Exception ");
-
-
break;
@@ -77581,20 +69475,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateType
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/disassociateTypes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77612,7 +69502,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateT
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77668,10 +69557,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateT
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -77684,8 +69571,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateT
g_warning("Unknown Exception ");
-
-
break;
@@ -77699,20 +69584,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateT
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/listTypesOfAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77730,7 +69611,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAg
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77798,8 +69678,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAg
g_warning("Unknown Exception ");
-
-
break;
@@ -77813,20 +69691,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAg
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/hasType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77842,7 +69716,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -77906,8 +69779,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -77921,20 +69792,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/getAgentAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -77954,7 +69821,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttri
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78032,7 +69898,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttri
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -78049,8 +69914,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttri
g_warning("Unknown Exception ");
-
-
break;
@@ -78064,20 +69927,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttri
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentManagement/setAgentAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78095,7 +69954,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttri
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78133,7 +69991,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttri
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -78160,10 +70017,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttri
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -78176,8 +70031,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttri
g_warning("Unknown Exception ");
-
-
break;
@@ -78191,20 +70044,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttri
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/assignAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78220,7 +70069,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78267,10 +70115,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -78283,8 +70129,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(t
g_warning("Unknown Exception ");
-
-
break;
@@ -78298,20 +70142,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/unassignAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78327,7 +70167,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78374,10 +70213,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -78390,8 +70227,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent
g_warning("Unknown Exception ");
-
-
break;
@@ -78405,20 +70240,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/listAssignedAgents:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78436,7 +70267,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78504,8 +70334,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
g_warning("Unknown Exception ");
-
-
break;
@@ -78519,20 +70347,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/listAssociatedIdentitiesOfAgent:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78550,7 +70374,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociate
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78618,8 +70441,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociate
g_warning("Unknown Exception ");
-
-
break;
@@ -78633,20 +70454,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociate
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/listAssignedAgentsByCapability:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78664,7 +70481,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78741,8 +70557,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
g_warning("Unknown Exception ");
-
-
break;
@@ -78756,20 +70570,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/listCapabilitiesOfIdentity:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78787,7 +70597,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilit
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78855,8 +70664,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilit
g_warning("Unknown Exception ");
-
-
break;
@@ -78870,20 +70677,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilit
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentAssignment/isIdentityCapableOf:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -78899,7 +70702,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCap
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -78963,8 +70765,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCap
g_warning("Unknown Exception ");
-
-
break;
@@ -78978,20 +70778,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCap
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/createIdentityAttribute:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79005,7 +70801,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79018,7 +70813,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttributeDef" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -79043,10 +70837,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -79059,8 +70851,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
g_warning("Unknown Exception ");
-
-
break;
@@ -79074,20 +70864,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/deleteIdentityAttribute:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79103,7 +70889,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79141,10 +70926,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -79157,8 +70940,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
g_warning("Unknown Exception ");
-
-
break;
@@ -79172,20 +70953,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/getIdentityAttributeDefinition:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79201,7 +70978,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIde
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79245,7 +71021,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIde
decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttributeDef" */
break;
@@ -79260,8 +71035,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIde
g_warning("Unknown Exception ");
-
-
break;
@@ -79275,20 +71048,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIde
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/listAllIdentityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79306,7 +71075,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAl
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79365,8 +71133,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAl
g_warning("Unknown Exception ");
-
-
break;
@@ -79380,20 +71146,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAl
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/createIdentityType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79411,7 +71173,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79467,10 +71228,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -79483,8 +71242,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
g_warning("Unknown Exception ");
-
-
break;
@@ -79498,20 +71255,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_create
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/deleteIdentityType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79527,7 +71280,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79565,10 +71317,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -79581,8 +71331,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
g_warning("Unknown Exception ");
-
-
break;
@@ -79596,20 +71344,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_delete
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/listIdentityTypes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79627,7 +71371,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79686,8 +71429,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
g_warning("Unknown Exception ");
-
-
break;
@@ -79701,20 +71442,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/addIdentityTypeAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79732,7 +71469,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIde
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79788,10 +71524,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIde
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -79804,8 +71538,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIde
g_warning("Unknown Exception ");
-
-
break;
@@ -79819,20 +71551,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIde
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/removeIdentityTypeAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79850,7 +71578,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_remove
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -79906,10 +71633,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_remove
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -79922,8 +71647,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_remove
g_warning("Unknown Exception ");
-
-
break;
@@ -79937,20 +71660,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_remove
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMIdentityTypeManagement/listIdentityTypeAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -79968,7 +71687,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80036,8 +71754,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
g_warning("Unknown Exception ");
-
-
break;
@@ -80051,20 +71767,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listId
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/createAgentAttribute:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80078,7 +71790,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80091,7 +71802,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttributeDef" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -80116,10 +71826,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -80132,8 +71840,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
g_warning("Unknown Exception ");
-
-
break;
@@ -80147,20 +71853,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/deleteAgentAttribute:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80176,7 +71878,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80214,10 +71915,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -80230,8 +71929,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
g_warning("Unknown Exception ");
-
-
break;
@@ -80245,20 +71942,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/getAgentAttributeDefinition:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80274,7 +71967,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentA
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80318,7 +72010,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentA
decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttributeDef" */
break;
@@ -80333,8 +72024,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentA
g_warning("Unknown Exception ");
-
-
break;
@@ -80348,20 +72037,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentA
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/listAllAgentAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80379,7 +72064,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAg
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80438,8 +72122,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAg
g_warning("Unknown Exception ");
-
-
break;
@@ -80453,20 +72135,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAg
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/createAgentType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80484,7 +72162,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80540,10 +72217,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -80556,8 +72231,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
g_warning("Unknown Exception ");
-
-
break;
@@ -80571,20 +72244,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAge
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/deleteAgentType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80600,7 +72269,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80638,10 +72306,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -80654,8 +72320,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
g_warning("Unknown Exception ");
-
-
break;
@@ -80669,20 +72333,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAge
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/listAgentTypes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80700,7 +72360,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80759,8 +72418,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
g_warning("Unknown Exception ");
-
-
break;
@@ -80774,20 +72431,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/addAgentTypeAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80805,7 +72458,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentT
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80861,10 +72513,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentT
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -80877,8 +72527,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentT
g_warning("Unknown Exception ");
-
-
break;
@@ -80892,20 +72540,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentT
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/removeAgentTypeAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -80923,7 +72567,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAge
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -80979,10 +72622,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAge
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -80995,8 +72636,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAge
g_warning("Unknown Exception ");
-
-
break;
@@ -81010,20 +72649,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAge
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMAgentTypeManagement/listAgentTypeAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81041,7 +72676,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81109,8 +72743,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
g_warning("Unknown Exception ");
-
-
break;
@@ -81124,20 +72756,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgent
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/createCapabilityAttribute:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81151,7 +72779,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81164,7 +72791,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttributeDef" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -81189,10 +72815,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -81205,8 +72829,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
g_warning("Unknown Exception ");
-
-
break;
@@ -81220,20 +72842,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/deleteCapabilityAttribute:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81249,7 +72867,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81287,10 +72904,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -81303,8 +72918,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
g_warning("Unknown Exception ");
-
-
break;
@@ -81318,20 +72931,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/getCapabilityAttributeDefinition:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81347,7 +72956,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapab
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81391,7 +72999,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapab
decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttributeDef" */
break;
@@ -81406,8 +73013,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapab
g_warning("Unknown Exception ");
-
-
break;
@@ -81421,20 +73026,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapab
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/listAllCapabilityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81452,7 +73053,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllC
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81511,8 +73111,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllC
g_warning("Unknown Exception ");
-
-
break;
@@ -81526,20 +73124,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllC
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/createCapability:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81557,7 +73151,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81613,10 +73206,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -81629,8 +73220,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
g_warning("Unknown Exception ");
-
-
break;
@@ -81644,20 +73233,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/deleteCapability:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81673,7 +73258,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81711,10 +73295,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -81727,8 +73309,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
g_warning("Unknown Exception ");
-
-
break;
@@ -81742,20 +73322,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/listCapabilities:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81773,7 +73349,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81832,8 +73407,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
g_warning("Unknown Exception ");
-
-
break;
@@ -81847,20 +73420,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/addCapabilityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81878,7 +73447,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapab
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -81934,10 +73502,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapab
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -81950,8 +73516,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapab
g_warning("Unknown Exception ");
-
-
break;
@@ -81965,20 +73529,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapab
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/removeCapabilityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -81996,7 +73556,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82052,10 +73611,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -82068,8 +73625,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCa
g_warning("Unknown Exception ");
-
-
break;
@@ -82083,20 +73638,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/listCapabilityAttributes:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82114,7 +73665,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82182,8 +73732,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
g_warning("Unknown Exception ");
-
-
break;
@@ -82197,20 +73745,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/assignCapabilitiesToType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82228,7 +73772,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82284,10 +73827,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -82300,8 +73841,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCa
g_warning("Unknown Exception ");
-
-
break;
@@ -82315,20 +73854,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/unassignCapabilitiesFromType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82346,7 +73881,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassign
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82402,10 +73936,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassign
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -82418,8 +73950,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassign
g_warning("Unknown Exception ");
-
-
break;
@@ -82433,20 +73963,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassign
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMCapabilityManagement/listCapabilitiesOfType:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82464,7 +73990,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82532,8 +74057,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
g_warning("Unknown Exception ");
-
-
break;
@@ -82547,20 +74070,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMProvisioningManager/getAuthToken:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82576,7 +74095,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthTo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82596,7 +74114,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthTo
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -82635,8 +74152,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthTo
g_warning("Unknown Exception ");
-
-
break;
@@ -82650,20 +74165,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthTo
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMProvisioningManager/obtainInterface:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82676,7 +74187,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInt
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82715,8 +74225,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInt
g_warning("Unknown Exception ");
-
-
break;
@@ -82730,20 +74238,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInt
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMProvisioningManager/getAccessControl:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82759,7 +74263,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccess
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82803,7 +74306,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccess
decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAccessControlData" */
break;
@@ -82818,8 +74320,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccess
g_warning("Unknown Exception ");
-
-
break;
@@ -82833,20 +74333,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccess
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/provisioning/IpPAMProvisioningManager/setAccessControl:1.0
*/
-
static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82862,7 +74358,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccess
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -82893,7 +74388,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccess
decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAccessControlData" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -82918,10 +74412,8 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccess
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -82934,8 +74426,6 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccess
g_warning("Unknown Exception ");
-
-
break;
@@ -82949,20 +74439,16 @@ static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccess
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMIdentityPresence/setIdentityPresence:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -82980,7 +74466,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83018,7 +74503,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -83045,10 +74529,8 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -83061,8 +74543,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
g_warning("Unknown Exception ");
-
-
break;
@@ -83076,20 +74556,16 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMIdentityPresence/setIdentityPresenceExpiration:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83101,13 +74577,13 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
gchar *seq = NULL;
guint32 u_octet4_loop_attributeNames;
guint32 i_attributeNames;
+ gint64 s_octet8;
guint32 u_octet4_loop_authToken;
guint32 i_authToken;
guint8 u_octet1;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83150,8 +74626,10 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"expiresIn = PRIo64",s_octet8);
+ }
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -83175,10 +74653,8 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -83191,8 +74667,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
g_warning("Unknown Exception ");
-
-
break;
@@ -83206,20 +74680,16 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenc
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMIdentityPresence/getIdentityPresence:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83239,7 +74709,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresenc
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83317,7 +74786,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresenc
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -83334,8 +74802,6 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresenc
g_warning("Unknown Exception ");
-
-
break;
@@ -83349,20 +74815,16 @@ static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresenc
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAgentPresence/setAgentPresence:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83380,7 +74842,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83418,7 +74879,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbu
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -83445,10 +74905,8 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbu
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -83461,8 +74919,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -83476,20 +74932,16 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAgentPresence/setCapabilityPresence:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83507,7 +74959,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83545,7 +74996,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -83572,10 +75022,8 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -83588,8 +75036,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
g_warning("Unknown Exception ");
-
-
break;
@@ -83603,20 +75049,16 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAgentPresence/setAgentPresenceExpiration:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83628,13 +75070,13 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
gchar *seq = NULL;
guint32 u_octet4_loop_attributeNames;
guint32 i_attributeNames;
+ gint64 s_octet8;
guint32 u_octet4_loop_authToken;
guint32 i_authToken;
guint8 u_octet1;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83677,8 +75119,10 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"expiresIn = PRIo64",s_octet8);
+ }
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -83702,10 +75146,8 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -83718,8 +75160,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
g_warning("Unknown Exception ");
-
-
break;
@@ -83733,20 +75173,16 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpir
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAgentPresence/setCapabilityPresenceExpiration:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83758,13 +75194,13 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
gchar *seq = NULL;
guint32 u_octet4_loop_attributeNames;
guint32 i_attributeNames;
+ gint64 s_octet8;
guint32 u_octet4_loop_authToken;
guint32 i_authToken;
guint8 u_octet1;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83807,8 +75243,10 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"expiresIn = PRIo64",s_octet8);
+ }
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -83832,10 +75270,8 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -83848,8 +75284,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
g_warning("Unknown Exception ");
-
-
break;
@@ -83863,20 +75297,16 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAgentPresence/getAgentPresence:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -83896,7 +75326,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbu
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -83974,7 +75403,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbu
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -83991,8 +75419,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbu
g_warning("Unknown Exception ");
-
-
break;
@@ -84006,20 +75432,16 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbu
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAgentPresence/getCapabilityPresence:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84039,7 +75461,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84117,7 +75538,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence
decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAttribute" */
}
@@ -84134,8 +75554,6 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence
g_warning("Unknown Exception ");
-
-
break;
@@ -84149,20 +75567,16 @@ static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpAppPAMPreferenceCheck/computeAvailability:1.0
*/
-
static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84182,7 +75596,6 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84204,7 +75617,6 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMContext" */
u_octet4_loop_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -84260,7 +75672,6 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAvailabilityProfile" */
}
@@ -84277,8 +75688,6 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
g_warning("Unknown Exception ");
-
-
break;
@@ -84292,20 +75701,16 @@ static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailabil
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAvailability/getAvailability:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84325,7 +75730,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84347,7 +75751,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMContext" */
u_octet4_loop_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -84403,7 +75806,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAvailabilityProfile" */
}
@@ -84420,8 +75822,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -84435,20 +75835,16 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAvailability/getPreference:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84464,7 +75860,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84486,7 +75881,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t
decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMContext" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -84514,10 +75908,8 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t
/* Begin union "org_csapi_pam_TpPAMPreferenceData" */
-
decode_org_csapi_pam_TpPAMPreferenceData_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_pam_TpPAMPreferenceData" */
break;
@@ -84532,8 +75924,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -84547,20 +75937,16 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMAvailability/setPreference:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84576,7 +75962,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84598,7 +75983,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMContext" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -84613,10 +75997,8 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
/* Begin union "org_csapi_pam_TpPAMPreferenceData" */
-
decode_org_csapi_pam_TpPAMPreferenceData_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_pam_TpPAMPreferenceData" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -84641,10 +76023,8 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -84657,8 +76037,6 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -84672,20 +76050,16 @@ static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/getAuthToken:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84701,7 +76075,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuth
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84721,7 +76094,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuth
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -84760,8 +76132,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuth
g_warning("Unknown Exception ");
-
-
break;
@@ -84775,20 +76145,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuth
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/obtainInterface:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84801,7 +76167,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainI
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84840,8 +76205,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainI
g_warning("Unknown Exception ");
-
-
break;
@@ -84855,20 +76218,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainI
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/getAccessControl:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84884,7 +76243,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAcce
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -84928,7 +76286,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAcce
decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAccessControlData" */
break;
@@ -84943,8 +76300,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAcce
g_warning("Unknown Exception ");
-
-
break;
@@ -84958,20 +76313,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAcce
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/setAccessControl:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -84987,7 +76338,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAcce
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85018,7 +76368,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAcce
decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAccessControlData" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -85043,10 +76392,8 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAcce
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -85059,8 +76406,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAcce
g_warning("Unknown Exception ");
-
-
break;
@@ -85074,20 +76419,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAcce
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/activateService:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85103,7 +76444,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85141,10 +76481,8 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activat
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -85157,8 +76495,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activat
g_warning("Unknown Exception ");
-
-
break;
@@ -85172,20 +76508,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/deactivateService:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85201,7 +76533,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactiv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85239,10 +76570,8 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactiv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -85255,8 +76584,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactiv
g_warning("Unknown Exception ");
-
-
break;
@@ -85270,20 +76597,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactiv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/access/IpPAMPresenceAvailabilityManager/isActiveIdentity:1.0
*/
-
static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85299,7 +76622,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85354,8 +76676,6 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiv
g_warning("Unknown Exception ");
-
-
break;
@@ -85369,20 +76689,16 @@ static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpAppPAMEventHandler/eventNotify:1.0
*/
-
static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85396,7 +76712,6 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85418,10 +76733,8 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t
/* Begin union "org_csapi_pam_TpPAMNotificationInfo" */
-
decode_org_csapi_pam_TpPAMNotificationInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_pam_TpPAMNotificationInfo" */
}
@@ -85434,10 +76747,8 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -85450,8 +76761,6 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -85465,20 +76774,16 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpAppPAMEventHandler/eventNotifyErr:1.0
*/
-
static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85490,7 +76795,6 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85508,7 +76812,6 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuf
decode_org_csapi_pam_TpPAMErrorInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMErrorInfo" */
break;
@@ -85519,10 +76822,8 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -85535,8 +76836,6 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -85550,20 +76849,16 @@ static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventHandler/isRegistered:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85578,7 +76873,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85629,8 +76923,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -85644,20 +76936,16 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventHandler/registerAppInterface:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85672,7 +76960,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85721,8 +77008,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -85736,20 +77021,16 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventHandler/registerForEvent:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85766,7 +77047,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85788,10 +77068,8 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff
/* Begin union "org_csapi_pam_TpPAMEventInfo" */
-
decode_org_csapi_pam_TpPAMEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_pam_TpPAMEventInfo" */
}
@@ -85840,8 +77118,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -85855,20 +77131,16 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventHandler/deregisterAppInterface:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85883,7 +77155,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -85917,10 +77188,8 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -85933,8 +77202,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(
g_warning("Unknown Exception ");
-
-
break;
@@ -85948,20 +77215,16 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventHandler/deregisterFromEvent:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -85976,7 +77239,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86010,10 +77272,8 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -86026,8 +77286,6 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -86041,20 +77299,16 @@ static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/getAuthToken:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86070,7 +77324,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86090,7 +77343,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -86129,8 +77381,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -86144,20 +77394,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/obtainInterface:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86170,7 +77416,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86209,8 +77454,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -86224,20 +77467,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/getAccessControl:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86253,7 +77492,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86297,7 +77535,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff
decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAccessControlData" */
break;
@@ -86312,8 +77549,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -86327,20 +77562,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/setAccessControl:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86356,7 +77587,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86387,7 +77617,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff
decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAccessControlData" */
u_octet4_loop_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -86412,10 +77641,8 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -86428,8 +77655,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -86443,20 +77668,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/activateService:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86472,7 +77693,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86510,10 +77730,8 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -86526,8 +77744,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -86541,20 +77757,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/deactivateService:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86570,7 +77782,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86608,10 +77819,8 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -86624,8 +77833,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -86639,20 +77846,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/pam/event/IpPAMEventManager/isActiveIdentity:1.0
*/
-
static void decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86668,7 +77871,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86723,8 +77925,6 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -86738,20 +77938,16 @@ static void decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/mailboxTerminated:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86762,7 +77958,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86775,7 +77970,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminat
decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMailboxIdentifier" */
break;
@@ -86786,10 +77980,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminat
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -86802,8 +77994,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminat
g_warning("Unknown Exception ");
-
-
break;
@@ -86817,20 +78007,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/reportNotification:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86844,7 +78030,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotificat
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86866,10 +78051,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotificat
/* Begin union "org_csapi_mmm_TpMessagingEventInfo" */
-
decode_org_csapi_mmm_TpMessagingEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessagingEventInfo" */
}
@@ -86897,8 +78080,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotificat
g_warning("Unknown Exception ");
-
-
break;
@@ -86912,20 +78093,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotificat
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/notificationsInterrupted:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -86936,7 +78113,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsIn
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -86951,10 +78127,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsIn
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -86967,8 +78141,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsIn
g_warning("Unknown Exception ");
-
-
break;
@@ -86982,20 +78154,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsIn
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/notificationsResumed:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87006,7 +78174,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsRe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87021,10 +78188,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsRe
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87037,8 +78202,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsRe
g_warning("Unknown Exception ");
-
-
break;
@@ -87052,20 +78215,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsRe
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/multiMediaMessagingTerminated:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87076,7 +78235,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87089,7 +78247,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessa
decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */
break;
@@ -87100,10 +78257,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessa
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87116,8 +78271,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessa
g_warning("Unknown Exception ");
-
-
break;
@@ -87131,20 +78284,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/terminateMultipleMailboxes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87157,7 +78306,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87177,7 +78325,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMailboxIdentifier" */
}
@@ -87190,10 +78337,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87206,8 +78351,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
g_warning("Unknown Exception ");
-
-
break;
@@ -87221,20 +78364,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessagingManager/terminateMultipleMultiMediaMessagingSessions:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87247,7 +78386,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87267,7 +78405,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */
}
@@ -87280,10 +78417,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87296,8 +78431,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
g_warning("Unknown Exception ");
-
-
break;
@@ -87311,20 +78444,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultip
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/openMailbox:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87337,7 +78466,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87379,7 +78507,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff
decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMailboxIdentifier" */
break;
@@ -87394,8 +78521,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -87409,20 +78534,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/openMultiMediaMessaging:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87433,7 +78554,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMess
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87446,7 +78566,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMess
decode_org_csapi_mmm_TpTerminatingAddressList_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpTerminatingAddressList" */
/* Begin struct "org_csapi_TpAddress" */
@@ -87455,7 +78574,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMess
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -87475,7 +78593,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMess
decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */
break;
@@ -87490,8 +78607,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMess
g_warning("Unknown Exception ");
-
-
break;
@@ -87505,20 +78620,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMess
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/createNotification:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87532,7 +78643,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87552,10 +78662,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification
/* Begin union "org_csapi_mmm_TpMessagingEventCriteria" */
-
decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessagingEventCriteria" */
}
@@ -87585,8 +78693,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -87600,20 +78706,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/destroyNotification:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87625,7 +78727,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotificatio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87645,10 +78746,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotificatio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87661,8 +78760,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotificatio
g_warning("Unknown Exception ");
-
-
break;
@@ -87676,20 +78773,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotificatio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/changeNotification:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87703,7 +78796,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87725,10 +78817,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification
/* Begin union "org_csapi_mmm_TpMessagingEventCriteria" */
-
decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessagingEventCriteria" */
}
@@ -87741,10 +78831,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87757,8 +78845,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -87772,20 +78858,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/getNextNotification:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87797,7 +78879,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotificatio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87823,7 +78904,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotificatio
decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMessagingNotificationRequestedSetEntry" */
break;
@@ -87838,8 +78918,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotificatio
g_warning("Unknown Exception ");
-
-
break;
@@ -87853,20 +78931,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotificatio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/enableNotifications:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87878,7 +78952,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotification
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87913,8 +78986,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotification
g_warning("Unknown Exception ");
-
-
break;
@@ -87928,20 +78999,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotification
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessagingManager/disableNotifications:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -87952,7 +79019,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotificatio
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -87967,10 +79033,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotificatio
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -87983,8 +79047,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotificatio
g_warning("Unknown Exception ");
-
-
break;
@@ -87998,20 +79060,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotificatio
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/createFolderRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88025,7 +79083,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88059,10 +79116,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88075,8 +79130,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -88090,20 +79143,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/createFolderErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88117,7 +79166,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88157,10 +79205,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88173,8 +79219,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -88188,20 +79232,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getFoldersRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88217,7 +79257,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88269,10 +79308,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88285,8 +79322,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -88300,20 +79335,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getFoldersErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88327,7 +79358,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88376,10 +79406,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88392,8 +79420,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -88407,20 +79433,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/deleteFolderRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88432,7 +79454,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88457,10 +79478,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88473,8 +79492,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -88488,20 +79505,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/deleteFolderErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88515,7 +79528,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88555,10 +79567,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88571,8 +79581,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -88586,20 +79594,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/copyFolderRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88611,7 +79615,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88636,10 +79639,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88652,8 +79653,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -88667,20 +79666,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/copyFolderErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88694,7 +79689,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88734,10 +79728,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88750,8 +79742,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -88765,20 +79755,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/moveFolderRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88790,7 +79776,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88815,10 +79800,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88831,8 +79814,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -88846,20 +79827,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/moveFolderErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88873,7 +79850,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -88913,10 +79889,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -88929,8 +79903,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -88944,20 +79916,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/putMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -88971,7 +79939,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89005,10 +79972,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89021,8 +79986,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -89036,20 +79999,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/putMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89063,7 +80022,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89103,10 +80061,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, p
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89119,8 +80075,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -89134,20 +80088,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/copyMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89159,7 +80109,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89184,10 +80133,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89200,8 +80147,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -89215,20 +80160,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/copyMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89242,7 +80183,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89282,10 +80222,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89298,8 +80236,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -89313,20 +80249,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/moveMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89338,7 +80270,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89363,10 +80294,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89379,8 +80308,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -89394,20 +80321,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/moveMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89421,7 +80344,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89461,10 +80383,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89477,8 +80397,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -89492,20 +80410,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/deleteMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89517,7 +80431,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89542,10 +80455,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89558,8 +80469,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -89573,20 +80482,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/deleteMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89600,7 +80505,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89640,10 +80544,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89656,8 +80558,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_
g_warning("Unknown Exception ");
-
-
break;
@@ -89671,20 +80571,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/listMessagesRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89699,7 +80595,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89729,7 +80624,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_,
decode_org_csapi_mmm_TpMessageDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMessageDescription" */
}
@@ -89740,7 +80634,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_,
decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMailboxFolderStatusInformation" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -89756,10 +80649,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89772,8 +80663,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -89787,20 +80676,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/listMessagesErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89814,7 +80699,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89854,10 +80738,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89870,8 +80752,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -89885,20 +80765,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/listMessageBodyPartsRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -89912,7 +80788,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -89942,7 +80817,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *
decode_org_csapi_mmm_TpBodyPartDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpBodyPartDescription" */
}
@@ -89955,10 +80829,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -89971,8 +80843,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -89986,20 +80856,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/listMessageBodyPartsErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90013,7 +80879,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90053,10 +80918,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90069,8 +80932,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -90084,20 +80945,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageBodyPartsRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90111,7 +80968,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90141,7 +80997,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *t
decode_org_csapi_mmm_TpBodyPart_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpBodyPart" */
}
@@ -90154,10 +81009,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90170,8 +81023,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -90185,20 +81036,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageBodyPartsErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90212,7 +81059,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90252,10 +81098,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90268,8 +81112,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *t
g_warning("Unknown Exception ");
-
-
break;
@@ -90283,20 +81125,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageHeadersRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90310,7 +81148,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90337,10 +81174,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb
/* Begin union "org_csapi_mmm_TpMessageHeaderField" */
-
decode_org_csapi_mmm_TpMessageHeaderField_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageHeaderField" */
}
@@ -90353,10 +81188,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90369,8 +81202,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -90384,20 +81215,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageHeadersErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90411,7 +81238,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90451,10 +81277,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90467,8 +81291,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -90482,20 +81304,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageContentRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90512,7 +81330,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90569,10 +81386,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90585,8 +81400,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -90600,20 +81413,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageContentErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90627,7 +81436,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90667,10 +81475,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90683,8 +81489,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -90698,20 +81502,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getFullMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90726,7 +81526,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90765,10 +81564,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90781,8 +81578,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -90796,20 +81591,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getFullMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90823,7 +81614,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90863,10 +81653,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90879,8 +81667,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -90894,20 +81680,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMailboxInfoPropertiesRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -90921,7 +81703,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -90948,10 +81729,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff
/* Begin union "org_csapi_mmm_TpMailboxInfoProperty" */
-
decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMailboxInfoProperty" */
}
@@ -90964,10 +81743,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -90980,8 +81757,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -90995,20 +81770,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getFolderInfoPropertiesRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91024,7 +81795,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91060,10 +81830,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_
/* Begin union "org_csapi_mmm_TpFolderInfoProperty" */
-
decode_org_csapi_mmm_TpFolderInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpFolderInfoProperty" */
}
@@ -91076,10 +81844,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91092,8 +81858,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -91107,20 +81871,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageInfoPropertiesRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91136,7 +81896,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91172,10 +81931,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff
/* Begin union "org_csapi_mmm_TpMessageInfoProperty" */
-
decode_org_csapi_mmm_TpMessageInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageInfoProperty" */
}
@@ -91188,10 +81945,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91204,8 +81959,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -91219,20 +81972,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/setMessageInfoPropertiesRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91248,7 +81997,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91284,10 +82032,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff
/* Begin union "org_csapi_mmm_TpMessageInfoProperty" */
-
decode_org_csapi_mmm_TpMessageInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageInfoProperty" */
}
@@ -91300,10 +82046,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91316,8 +82060,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -91331,20 +82073,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/setMessageInfoPropertiesErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91360,7 +82098,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91399,7 +82136,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff
decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMessageInfoPropertyError" */
}
@@ -91412,10 +82148,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91428,8 +82162,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -91443,20 +82175,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMailboxInfoPropertiesErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91470,7 +82198,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91510,10 +82237,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91526,8 +82251,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -91541,20 +82264,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getFolderInfoPropertiesErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91568,7 +82287,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91608,10 +82326,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91624,8 +82340,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -91639,20 +82353,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMailbox/getMessageInfoPropertiesErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91666,7 +82376,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91706,10 +82415,8 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91722,8 +82429,6 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -91737,20 +82442,16 @@ static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/close:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91762,7 +82463,6 @@ static void decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91782,10 +82482,8 @@ static void decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -91798,8 +82496,6 @@ static void decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown Exception ");
-
-
break;
@@ -91813,20 +82509,16 @@ static void decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/createFolderReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91840,7 +82532,6 @@ static void decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91886,8 +82577,6 @@ static void decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -91901,20 +82590,16 @@ static void decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getFoldersReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -91928,7 +82613,6 @@ static void decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -91974,8 +82658,6 @@ static void decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -91989,20 +82671,16 @@ static void decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/deleteFolderReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92016,7 +82694,6 @@ static void decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92062,8 +82739,6 @@ static void decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -92077,20 +82752,16 @@ static void decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/copyFolderReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92104,7 +82775,6 @@ static void decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92159,8 +82829,6 @@ static void decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -92174,20 +82842,16 @@ static void decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/moveFolderReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92201,7 +82865,6 @@ static void decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92256,8 +82919,6 @@ static void decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -92271,20 +82932,16 @@ static void decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/putMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92301,7 +82958,6 @@ static void decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92361,8 +83017,6 @@ static void decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown Exception ");
-
-
break;
@@ -92376,20 +83030,16 @@ static void decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, pack
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/copyMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92403,7 +83053,6 @@ static void decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92467,8 +83116,6 @@ static void decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -92482,20 +83129,16 @@ static void decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/moveMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92509,7 +83152,6 @@ static void decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92573,8 +83215,6 @@ static void decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown Exception ");
-
-
break;
@@ -92588,20 +83228,16 @@ static void decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, pac
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/deleteMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92615,7 +83251,6 @@ static void decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92670,8 +83305,6 @@ static void decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, p
g_warning("Unknown Exception ");
-
-
break;
@@ -92685,20 +83318,16 @@ static void decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, p
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/listMessagesReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92713,7 +83342,6 @@ static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92740,7 +83368,6 @@ static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, pa
decode_org_csapi_mmm_TpListMessagesCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpListMessagesCriteria" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -92773,8 +83400,6 @@ static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown Exception ");
-
-
break;
@@ -92788,20 +83413,16 @@ static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, pa
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/listMessageBodyPartsReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92815,7 +83436,6 @@ static void decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92875,8 +83495,6 @@ static void decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -92890,20 +83508,16 @@ static void decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getMessageBodyPartsReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -92919,7 +83533,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -92992,8 +83605,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb
g_warning("Unknown Exception ");
-
-
break;
@@ -93007,20 +83618,16 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getMessageHeadersReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93034,7 +83641,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93089,8 +83695,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -93104,20 +83708,16 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getMessageContentReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93131,7 +83731,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93186,8 +83785,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U
g_warning("Unknown Exception ");
-
-
break;
@@ -93201,20 +83798,16 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getFullMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93228,7 +83821,6 @@ static void decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93283,8 +83875,6 @@ static void decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -93298,20 +83888,16 @@ static void decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getMailboxInfoPropertiesReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93323,7 +83909,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93360,8 +83945,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -93375,20 +83958,16 @@ static void decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getFolderInfoPropertiesReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93402,7 +83981,6 @@ static void decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93448,8 +84026,6 @@ static void decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -93463,20 +84039,16 @@ static void decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/getMessageInfoPropertiesReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93490,7 +84062,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93536,8 +84107,6 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -93551,20 +84120,16 @@ static void decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMailbox/setMessageInfoPropertiesReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93580,7 +84145,6 @@ static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93611,10 +84175,8 @@ static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t
/* Begin union "org_csapi_mmm_TpMessageInfoProperty" */
-
decode_org_csapi_mmm_TpMessageInfoProperty_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageInfoProperty" */
}
@@ -93644,8 +84206,6 @@ static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -93659,20 +84219,16 @@ static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/sendMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93684,7 +84240,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93709,10 +84264,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -93725,8 +84278,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -93740,20 +84291,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/sendMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93767,7 +84314,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93807,10 +84353,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -93823,8 +84367,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -93838,20 +84380,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/cancelMessageRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93863,7 +84401,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93888,10 +84425,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -93904,8 +84439,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -93919,20 +84452,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/cancelMessageErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -93946,7 +84475,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -93986,10 +84514,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuf
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94002,8 +84528,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuf
g_warning("Unknown Exception ");
-
-
break;
@@ -94017,20 +84541,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuf
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/queryStatusRes:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94044,7 +84564,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94074,7 +84593,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_
decode_org_csapi_mmm_TpQueryStatusReport_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpQueryStatusReport" */
}
@@ -94087,10 +84605,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94103,8 +84619,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -94118,20 +84632,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/queryStatusErr:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94145,7 +84655,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94185,10 +84694,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94201,8 +84708,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_
g_warning("Unknown Exception ");
-
-
break;
@@ -94216,20 +84721,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/messageStatusReport:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94243,7 +84744,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94266,7 +84766,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tv
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -94291,10 +84790,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tv
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94307,8 +84804,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tv
g_warning("Unknown Exception ");
-
-
break;
@@ -94322,20 +84817,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tv
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpAppMultiMediaMessaging/messageReceived:1.0
*/
-
static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94352,7 +84843,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94388,10 +84878,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff
/* Begin union "org_csapi_mmm_TpMessageHeaderField" */
-
decode_org_csapi_mmm_TpMessageHeaderField_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageHeaderField" */
}
@@ -94404,10 +84892,8 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94420,8 +84906,6 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff
g_warning("Unknown Exception ");
-
-
break;
@@ -94435,20 +84919,16 @@ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessaging/sendMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94469,7 +84949,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94487,7 +84966,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_mmm_TpTerminatingAddressList" */
@@ -94496,7 +84974,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
decode_org_csapi_mmm_TpTerminatingAddressList_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpTerminatingAddressList" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -94518,10 +84995,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
/* Begin union "org_csapi_mmm_TpMessageTreatment" */
-
decode_org_csapi_mmm_TpMessageTreatment_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageTreatment" */
}
@@ -94550,10 +85025,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
/* Begin union "org_csapi_mmm_TpMessageHeaderField" */
-
decode_org_csapi_mmm_TpMessageHeaderField_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageHeaderField" */
}
@@ -94583,8 +85056,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -94598,20 +85069,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessaging/cancelMessageReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94623,7 +85090,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94648,10 +85114,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94664,8 +85128,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t
g_warning("Unknown Exception ");
-
-
break;
@@ -94679,20 +85141,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessaging/queryStatusReq:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94704,7 +85162,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94729,10 +85186,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94745,8 +85200,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *
g_warning("Unknown Exception ");
-
-
break;
@@ -94760,20 +85213,16 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/*
* IDL:org/csapi/mmm/IpMultiMediaMessaging/close:1.0
*/
-
static void decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) {
gboolean stream_is_big_endian; /* big endianess */
@@ -94785,7 +85234,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header);
switch(header->message_type) {
@@ -94805,10 +85253,8 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_,
case NO_EXCEPTION:
-
/* Function returns void */
-
break;
case USER_EXCEPTION:
@@ -94821,8 +85267,6 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_,
g_warning("Unknown Exception ");
-
-
break;
@@ -94836,15 +85280,12 @@ static void decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_,
g_warning("Unknown GIOP Message");
-
break;
-
} /* switch(header->message_type) */
}
-
/* Struct = IDL:org/csapi/TpAddress:1.0 */
static void decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -94859,10 +85300,8 @@ static void decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -94910,7 +85349,6 @@ static void decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo
}
-
/* Struct = IDL:org/csapi/TpAddressRange:1.0 */
static void decode_org_csapi_TpAddressRange_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -94925,10 +85363,8 @@ static void decode_org_csapi_TpAddressRange_st(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -94964,7 +85400,6 @@ static void decode_org_csapi_TpAddressRange_st(tvbuff_t *tvb _U_, packet_info *p
}
-
/* Struct = IDL:org/csapi/TpCAIElements:1.0 */
static void decode_org_csapi_TpCAIElements_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -94978,10 +85413,8 @@ static void decode_org_csapi_TpCAIElements_st(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
-
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,"TpCAIElements_UnitsPerInterval = %i",s_octet4);
@@ -95019,7 +85452,6 @@ static void decode_org_csapi_TpCAIElements_st(tvbuff_t *tvb _U_, packet_info *pi
}
-
/* Struct = IDL:org/csapi/TpChargeAdviceInfo:1.0 */
static void decode_org_csapi_TpChargeAdviceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95032,17 +85464,14 @@ static void decode_org_csapi_TpChargeAdviceInfo_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpCAIElements" */
decode_org_csapi_TpCAIElements_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpCAIElements" */
/* Begin struct "org_csapi_TpCAIElements" */
@@ -95051,12 +85480,10 @@ static void decode_org_csapi_TpChargeAdviceInfo_st(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_TpCAIElements_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpCAIElements" */
}
-
/* Struct = IDL:org/csapi/TpChargePerTime:1.0 */
static void decode_org_csapi_TpChargePerTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95070,10 +85497,8 @@ static void decode_org_csapi_TpChargePerTime_st(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
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,"TpChargePerTime_InitialCharge = %i",s_octet4);
@@ -95091,7 +85516,6 @@ static void decode_org_csapi_TpChargePerTime_st(tvbuff_t *tvb _U_, packet_info *
}
-
/* Struct = IDL:org/csapi/TpAoCInfo:1.0 */
static void decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95106,17 +85530,13 @@ static void decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin union "org_csapi_TpAoCOrder" */
-
decode_org_csapi_TpAoCOrder_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_TpAoCOrder" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -95130,7 +85550,6 @@ static void decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo
}
-
/* Struct = IDL:org/csapi/TpTimeInterval:1.0 */
static void decode_org_csapi_TpTimeInterval_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95145,10 +85564,8 @@ static void decode_org_csapi_TpTimeInterval_st(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTimeInterval_StartTime (%u) = %s",
@@ -95169,7 +85586,6 @@ static void decode_org_csapi_TpTimeInterval_st(tvbuff_t *tvb _U_, packet_info *p
}
-
/* Struct = IDL:org/csapi/TpStructuredAttributeValue:1.0 */
static void decode_org_csapi_TpStructuredAttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95184,10 +85600,8 @@ static void decode_org_csapi_TpStructuredAttributeValue_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpStructuredAttributeValue_Type (%u) = %s",
@@ -95199,10 +85613,8 @@ static void decode_org_csapi_TpStructuredAttributeValue_st(tvbuff_t *tvb _U_, pa
get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header);
-
}
-
/* Struct = IDL:org/csapi/TpAttribute:1.0 */
static void decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95217,10 +85629,8 @@ static void decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAttribute_AttributeName (%u) = %s",
@@ -95233,15 +85643,12 @@ static void decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinf
/* Begin union "org_csapi_TpAttributeValue" */
-
decode_org_csapi_TpAttributeValue_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_TpAttributeValue" */
}
-
/* Struct = IDL:org/csapi/fw/TpFaultStats:1.0 */
static void decode_org_csapi_fw_TpFaultStats_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95256,10 +85663,8 @@ static void decode_org_csapi_fw_TpFaultStats_st(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -95288,7 +85693,6 @@ static void decode_org_csapi_fw_TpFaultStats_st(tvbuff_t *tvb _U_, packet_info *
}
-
/* Struct = IDL:org/csapi/fw/TpFaultStatsRecord:1.0 */
static void decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95303,17 +85707,14 @@ static void decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpTimeInterval" */
decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpTimeInterval" */
u_octet4_loop_TpFaultStatsRecord_FaultStatsSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -95329,14 +85730,12 @@ static void decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_fw_TpFaultStats_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFaultStats" */
}
}
-
/* Struct = IDL:org/csapi/fw/TpLoadPolicy:1.0 */
static void decode_org_csapi_fw_TpLoadPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95351,10 +85750,8 @@ static void decode_org_csapi_fw_TpLoadPolicy_st(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpLoadPolicy_LoadPolicy (%u) = %s",
@@ -95366,7 +85763,6 @@ static void decode_org_csapi_fw_TpLoadPolicy_st(tvbuff_t *tvb _U_, packet_info *
}
-
/* Struct = IDL:org/csapi/fw/TpLoadStatisticData:1.0 */
static void decode_org_csapi_fw_TpLoadStatisticData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95381,10 +85777,8 @@ static void decode_org_csapi_fw_TpLoadStatisticData_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4,4,"TpLoadStatisticData_LoadValue = %.6e",my_float);
@@ -95398,7 +85792,6 @@ static void decode_org_csapi_fw_TpLoadStatisticData_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/fw/TpLoadThreshold:1.0 */
static void decode_org_csapi_fw_TpLoadThreshold_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95412,10 +85805,8 @@ static void decode_org_csapi_fw_TpLoadThreshold_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4,4,"TpLoadThreshold_LoadThreshold = %.6e",my_float);
@@ -95423,7 +85814,6 @@ static void decode_org_csapi_fw_TpLoadThreshold_st(tvbuff_t *tvb _U_, packet_inf
}
-
/* Struct = IDL:org/csapi/fw/TpLoadInitVal:1.0 */
static void decode_org_csapi_fw_TpLoadInitVal_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95437,10 +85827,8 @@ static void decode_org_csapi_fw_TpLoadInitVal_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -95453,12 +85841,10 @@ static void decode_org_csapi_fw_TpLoadInitVal_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_fw_TpLoadThreshold_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadThreshold" */
}
-
/* Struct = IDL:org/csapi/fw/TpProperty:1.0 */
static void decode_org_csapi_fw_TpProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95473,10 +85859,8 @@ static void decode_org_csapi_fw_TpProperty_st(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpProperty_PropertyName (%u) = %s",
@@ -95497,7 +85881,6 @@ static void decode_org_csapi_fw_TpProperty_st(tvbuff_t *tvb _U_, packet_info *pi
}
-
/* Struct = IDL:org/csapi/fw/TpClientAppDescription:1.0 */
static void decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95515,10 +85898,8 @@ static void decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpClientAppDescription_ClientAppID (%u) = %s",
@@ -95541,7 +85922,6 @@ static void decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, pac
decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpProperty" */
}
@@ -95558,7 +85938,6 @@ static void decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, pac
}
-
/* Struct = IDL:org/csapi/fw/TpEntOp:1.0 */
static void decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95575,10 +85954,8 @@ static void decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpEntOp_EntOpID (%u) = %s",
@@ -95601,14 +85978,12 @@ static void decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo
decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpProperty" */
}
}
-
/* Struct = IDL:org/csapi/fw/TpSag:1.0 */
static void decode_org_csapi_fw_TpSag_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95623,10 +85998,8 @@ static void decode_org_csapi_fw_TpSag_st(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSag_SagID (%u) = %s",
@@ -95647,7 +86020,6 @@ static void decode_org_csapi_fw_TpSag_st(tvbuff_t *tvb _U_, packet_info *pinfo _
}
-
/* Struct = IDL:org/csapi/fw/TpServiceProperty:1.0 */
static void decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95664,10 +86036,8 @@ static void decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProperty_ServicePropertyName (%u) = %s",
@@ -95697,7 +86067,6 @@ static void decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/fw/TpServiceDescription:1.0 */
static void decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95714,10 +86083,8 @@ static void decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceDescription_ServiceTypeName (%u) = %s",
@@ -95740,14 +86107,12 @@ static void decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
}
-
/* Struct = IDL:org/csapi/fw/TpService:1.0 */
static void decode_org_csapi_fw_TpService_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95762,10 +86127,8 @@ static void decode_org_csapi_fw_TpService_st(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpService_ServiceID (%u) = %s",
@@ -95781,12 +86144,10 @@ static void decode_org_csapi_fw_TpService_st(tvbuff_t *tvb _U_, packet_info *pin
decode_org_csapi_fw_TpServiceDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceDescription" */
}
-
/* Struct = IDL:org/csapi/fw/TpServiceProfileDescription:1.0 */
static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95804,10 +86165,8 @@ static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfileDescription_ServiceContractID (%u) = %s",
@@ -95857,7 +86216,6 @@ static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -95878,7 +86236,6 @@ static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/fw/TpServiceTypeProperty:1.0 */
static void decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95893,10 +86250,8 @@ static void decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypeProperty_ServicePropertyName (%u) = %s",
@@ -95923,7 +86278,6 @@ static void decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, pack
}
-
/* Struct = IDL:org/csapi/fw/TpServiceTypeDescription:1.0 */
static void decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -95943,10 +86297,8 @@ static void decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpServiceTypeDescription_ServiceTypePropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpServiceTypeDescription_ServiceTypePropertyList = %u",u_octet4_loop_TpServiceTypeDescription_ServiceTypePropertyList);
@@ -95960,7 +86312,6 @@ static void decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, p
decode_org_csapi_fw_TpServiceTypeProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceTypeProperty" */
}
@@ -95990,7 +86341,6 @@ static void decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/fw/TpSignatureAndServiceMgr:1.0 */
static void decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96006,10 +86356,8 @@ static void decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpSignatureAndServiceMgr_DigitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpSignatureAndServiceMgr_DigitalSignature = %u",u_octet4_loop_TpSignatureAndServiceMgr_DigitalSignature);
@@ -96029,7 +86377,6 @@ static void decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/fw/TpPerson:1.0 */
static void decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96046,10 +86393,8 @@ static void decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPerson_PersonName (%u) = %s",
@@ -96108,14 +86453,12 @@ static void decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinf
decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpProperty" */
}
}
-
/* Struct = IDL:org/csapi/fw/TpServiceContractDescription:1.0 */
static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96133,17 +86476,14 @@ static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_fw_TpPerson" */
decode_org_csapi_fw_TpPerson_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpPerson" */
/* Begin struct "org_csapi_fw_TpPerson" */
@@ -96152,7 +86492,6 @@ static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U
decode_org_csapi_fw_TpPerson_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpPerson" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -96204,7 +86543,6 @@ static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U
decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProperty" */
}
@@ -96216,7 +86554,6 @@ static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U
}
-
/* Struct = IDL:org/csapi/fw/TpLoadStatistic:1.0 */
static void decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96231,17 +86568,13 @@ static void decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin union "org_csapi_fw_TpLoadStatisticEntityID" */
-
decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpLoadStatisticEntityID" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -96256,15 +86589,12 @@ static void decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_inf
/* Begin union "org_csapi_fw_TpLoadStatisticInfo" */
-
decode_org_csapi_fw_TpLoadStatisticInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpLoadStatisticInfo" */
}
-
/* Struct = IDL:org/csapi/fw/TpServiceContract:1.0 */
static void decode_org_csapi_fw_TpServiceContract_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96279,10 +86609,8 @@ static void decode_org_csapi_fw_TpServiceContract_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceContract_ServiceContractID (%u) = %s",
@@ -96298,12 +86626,10 @@ static void decode_org_csapi_fw_TpServiceContract_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceContractDescription" */
}
-
/* Struct = IDL:org/csapi/fw/TpServiceProfile:1.0 */
static void decode_org_csapi_fw_TpServiceProfile_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96318,10 +86644,8 @@ static void decode_org_csapi_fw_TpServiceProfile_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceProfile_ServiceProfileID (%u) = %s",
@@ -96337,12 +86661,10 @@ static void decode_org_csapi_fw_TpServiceProfile_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpServiceProfileDescription" */
}
-
/* Struct = IDL:org/csapi/fw/TpAuthDomain:1.0 */
static void decode_org_csapi_fw_TpAuthDomain_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96355,17 +86677,13 @@ static void decode_org_csapi_fw_TpAuthDomain_st(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin union "org_csapi_fw_TpDomainID" */
-
decode_org_csapi_fw_TpDomainID_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpDomainID" */
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -96373,7 +86691,6 @@ static void decode_org_csapi_fw_TpAuthDomain_st(tvbuff_t *tvb _U_, packet_info *
}
-
/* Struct = IDL:org/csapi/fw/TpSagProfilePair:1.0 */
static void decode_org_csapi_fw_TpSagProfilePair_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96388,10 +86705,8 @@ static void decode_org_csapi_fw_TpSagProfilePair_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpSagProfilePair_Sag (%u) = %s",
@@ -96412,7 +86727,6 @@ static void decode_org_csapi_fw_TpSagProfilePair_st(tvbuff_t *tvb _U_, packet_in
}
-
/* Struct = IDL:org/csapi/fw/TpAddSagMembersConflict:1.0 */
static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96427,10 +86741,8 @@ static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAddSagMembersConflict_ClientApplication (%u) = %s",
@@ -96446,7 +86758,6 @@ static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpSagProfilePair" */
/* Begin struct "org_csapi_fw_TpSagProfilePair" */
@@ -96455,7 +86766,6 @@ static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpSagProfilePair" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -96469,7 +86779,6 @@ static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/fw/TpAssignSagToServiceProfileConflict:1.0 */
static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96484,10 +86793,8 @@ static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpAssignSagToServiceProfileConflict_ClientApplication (%u) = %s",
@@ -96503,7 +86810,6 @@ static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t
decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpSagProfilePair" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -96517,7 +86823,6 @@ static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t
}
-
/* Struct = IDL:org/csapi/fw/TpServiceTypePropertyValue:1.0 */
static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96534,10 +86839,8 @@ static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpServiceTypePropertyValue_ServicePropertyName (%u) = %s",
@@ -96582,7 +86885,6 @@ static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/fw/TpFwMigrationServiceAvailableInfo:1.0 */
static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96600,10 +86902,8 @@ static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwMigrationServiceAvailableInfo_ServiceType (%u) = %s",
@@ -96665,17 +86965,14 @@ static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *t
/* Begin union "org_csapi_fw_TpMigrationAdditionalInfo" */
-
decode_org_csapi_fw_TpMigrationAdditionalInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_fw_TpMigrationAdditionalInfo" */
}
}
-
/* Struct = IDL:org/csapi/fw/TpFwAgreementInfo:1.0 */
static void decode_org_csapi_fw_TpFwAgreementInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96690,10 +86987,8 @@ static void decode_org_csapi_fw_TpFwAgreementInfo_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpFwAgreementInfo_ClientApplicationID (%u) = %s",
@@ -96732,7 +87027,6 @@ static void decode_org_csapi_fw_TpFwAgreementInfo_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/ui/TpUIMessageCriteria:1.0 */
static void decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96748,10 +87042,8 @@ static void decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIMessageCriteria_EndSequence (%u) = %s",
@@ -96773,70 +87065,6 @@ 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) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventInfo_ServiceCode (%u) = %s",
- u_octet4, (u_octet4 > 0) ? seq : "");
- }
-
- 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) {
- proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIEventInfo_DataString (%u) = %s",
- u_octet4, (u_octet4 > 0) ? seq : "");
- }
-
- 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_) {
@@ -96851,17 +87079,14 @@ static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpAddressRange" */
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -96870,7 +87095,6 @@ static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -96884,7 +87108,6 @@ static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/ui/TpUIEventCriteriaResult:1.0 */
static void decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96898,17 +87121,14 @@ static void decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_ui_TpUIEventCriteria" */
decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIEventCriteria" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -96918,7 +87138,6 @@ static void decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/ui/TpUIEventNotificationInfo:1.0 */
static void decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -96936,17 +87155,14 @@ static void decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_,
/* 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" */
@@ -96955,7 +87171,6 @@ static void decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_,
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);
@@ -96989,7 +87204,6 @@ static void decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/ui/TpUIRecognitionProperty:1.0 */
static void decode_org_csapi_ui_TpUIRecognitionProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97004,10 +87218,8 @@ static void decode_org_csapi_ui_TpUIRecognitionProperty_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionProperty_PropertyName (%u) = %s",
@@ -97028,7 +87240,6 @@ static void decode_org_csapi_ui_TpUIRecognitionProperty_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/ui/TpUIRecognitionCriteria:1.0 */
static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97045,10 +87256,8 @@ static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIRecognitionCriteria_SpeakerID (%u) = %s",
@@ -97071,7 +87280,6 @@ static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_ui_TpUIRecognitionProperty_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIRecognitionProperty" */
}
@@ -97087,7 +87295,6 @@ static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/ui/TpUICollectCriteria:1.0 */
static void decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97103,10 +87310,8 @@ static void decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
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,"TpUICollectCriteria_MinLength = %i",s_octet4);
@@ -97148,12 +87353,10 @@ static void decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet
decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIRecognitionCriteria" */
}
-
/* Struct = IDL:org/csapi/ui/TpUIWordOverride:1.0 */
static void decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97168,10 +87371,8 @@ static void decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUIWordOverride_Spelling (%u) = %s",
@@ -97198,7 +87399,6 @@ static void decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_in
}
-
/* Struct = IDL:org/csapi/ui/TpUISynthesisInfoData:1.0 */
static void decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97215,10 +87415,8 @@ static void decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -97265,14 +87463,12 @@ static void decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, pack
decode_org_csapi_ui_TpUIWordOverride_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUIWordOverride" */
}
}
-
/* Struct = IDL:org/csapi/cc/TpCallError:1.0 */
static void decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97287,10 +87483,8 @@ static void decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallError_ErrorTime (%u) = %s",
@@ -97309,15 +87503,12 @@ static void decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *p
/* Begin union "org_csapi_cc_TpCallAdditionalErrorInfo" */
-
decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAdditionalErrorInfo" */
}
-
/* Struct = IDL:org/csapi/cc/TpCallEndedReport:1.0 */
static void decode_org_csapi_cc_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97332,10 +87523,8 @@ static void decode_org_csapi_cc_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
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,"TpCallEndedReport_CallLegSessionID = %i",s_octet4);
@@ -97349,7 +87538,6 @@ static void decode_org_csapi_cc_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/cc/TpCallInfoReport:1.0 */
static void decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97365,10 +87553,8 @@ static void decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
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,"TpCallInfoReport_CallInfoType = %i",s_octet4);
@@ -97418,7 +87604,6 @@ static void decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_in
}
-
/* Struct = IDL:org/csapi/cc/TpCallServiceCode:1.0 */
static void decode_org_csapi_cc_TpCallServiceCode_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97433,10 +87618,8 @@ static void decode_org_csapi_cc_TpCallServiceCode_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -97454,7 +87637,6 @@ static void decode_org_csapi_cc_TpCallServiceCode_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/cc/TpCallTreatment:1.0 */
static void decode_org_csapi_cc_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97468,10 +87650,8 @@ static void decode_org_csapi_cc_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -97487,15 +87667,12 @@ static void decode_org_csapi_cc_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_inf
/* Begin union "org_csapi_cc_TpCallAdditionalTreatmentInfo" */
-
decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAdditionalTreatmentInfo" */
}
-
/* Struct = IDL:org/csapi/cc/TpCallChargePlan:1.0 */
static void decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97515,10 +87692,8 @@ static void decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -97567,15 +87742,12 @@ static void decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_in
/* Begin union "org_csapi_cc_TpCallPartyToChargeAdditionalInfo" */
-
decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallPartyToChargeAdditionalInfo" */
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallEventCriteria:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97590,17 +87762,14 @@ static void decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpAddressRange" */
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -97609,7 +87778,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, p
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -97631,7 +87799,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallEventCriteriaResult:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97645,17 +87812,14 @@ static void decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cc_gccs_TpCallEventCriteria" */
decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallEventCriteria" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -97665,7 +87829,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvbuff_t *tvb
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallReleaseCause:1.0 */
static void decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97679,10 +87842,8 @@ static void decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
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,"TpCallReleaseCause_Value = %i",s_octet4);
@@ -97695,7 +87856,6 @@ static void decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallReport:1.0 */
static void decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97710,10 +87870,8 @@ static void decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -97738,15 +87896,12 @@ static void decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_i
/* Begin union "org_csapi_cc_gccs_TpCallAdditionalReportInfo" */
-
decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_gccs_TpCallAdditionalReportInfo" */
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallReportRequest:1.0 */
static void decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97760,10 +87915,8 @@ static void decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -97779,15 +87932,12 @@ static void decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvbuff_t *tvb _U_, p
/* Begin union "org_csapi_cc_gccs_TpCallAdditionalReportCriteria" */
-
decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_gccs_TpCallAdditionalReportCriteria" */
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallEventInfo:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97804,17 +87954,14 @@ static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packe
/* 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" */
@@ -97823,7 +87970,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -97832,7 +87978,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_TpAddress" */
@@ -97841,7 +87986,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_TpCallEventInfo_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -97854,10 +87998,8 @@ static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packe
/* Begin union "org_csapi_cc_gccs_TpCallAppInfo" */
-
decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_gccs_TpCallAppInfo" */
}
@@ -97881,7 +88023,6 @@ static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallEndedReport:1.0 */
static void decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97895,10 +88036,8 @@ static void decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
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,"TpCallEndedReport_CallLegSessionID = %i",s_octet4);
@@ -97910,12 +88049,10 @@ static void decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvbuff_t *tvb _U_, pac
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallInfoReport:1.0 */
static void decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -97931,10 +88068,8 @@ static void decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
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,"TpCallInfoReport_CallInfoType = %i",s_octet4);
@@ -97982,12 +88117,10 @@ static void decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvbuff_t *tvb _U_, pack
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallTreatment:1.0 */
static void decode_org_csapi_cc_gccs_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98001,10 +88134,8 @@ static void decode_org_csapi_cc_gccs_TpCallTreatment_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -98017,21 +88148,17 @@ static void decode_org_csapi_cc_gccs_TpCallTreatment_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
/* Begin union "org_csapi_cc_TpCallAdditionalTreatmentInfo" */
-
decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAdditionalTreatmentInfo" */
}
-
/* Struct = IDL:org/csapi/cc/gccs/TpCallIdentifier:1.0 */
static void decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98045,10 +88172,8 @@ static void decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -98059,7 +88184,6 @@ static void decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvbuff_t *tvb _U_, pack
}
-
/* Struct = IDL:org/csapi/cc/TpCallNotificationScope:1.0 */
static void decode_org_csapi_cc_TpCallNotificationScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98072,17 +88196,14 @@ static void decode_org_csapi_cc_TpCallNotificationScope_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpAddressRange" */
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -98091,12 +88212,10 @@ static void decode_org_csapi_cc_TpCallNotificationScope_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
}
-
/* Struct = IDL:org/csapi/cc/TpCallNotificationReportScope:1.0 */
static void decode_org_csapi_cc_TpCallNotificationReportScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98109,17 +88228,14 @@ static void decode_org_csapi_cc_TpCallNotificationReportScope_st(tvbuff_t *tvb _
/* 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" */
@@ -98128,12 +88244,10 @@ static void decode_org_csapi_cc_TpCallNotificationReportScope_st(tvbuff_t *tvb _
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
-
/* Struct = IDL:org/csapi/cc/TpCallEventRequest:1.0 */
static void decode_org_csapi_cc_TpCallEventRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98147,10 +88261,8 @@ static void decode_org_csapi_cc_TpCallEventRequest_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -98160,10 +88272,8 @@ static void decode_org_csapi_cc_TpCallEventRequest_st(tvbuff_t *tvb _U_, packet_
/* Begin union "org_csapi_cc_TpAdditionalCallEventCriteria" */
-
decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpAdditionalCallEventCriteria" */
@@ -98174,7 +88284,6 @@ static void decode_org_csapi_cc_TpCallEventRequest_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/cc/TpCallNotificationRequest:1.0 */
static void decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98189,17 +88298,14 @@ static void decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cc_TpCallNotificationScope" */
decode_org_csapi_cc_TpCallNotificationScope_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationScope" */
u_octet4_loop_TpCallNotificationRequest_CallEventsRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -98215,14 +88321,12 @@ static void decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallEventRequest" */
}
}
-
/* Struct = IDL:org/csapi/cc/TpNotificationRequested:1.0 */
static void decode_org_csapi_cc_TpNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98236,17 +88340,14 @@ static void decode_org_csapi_cc_TpNotificationRequested_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cc_TpCallNotificationRequest" */
decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationRequest" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -98256,7 +88357,6 @@ static void decode_org_csapi_cc_TpNotificationRequested_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/cc/TpCallLegConnectionProperties:1.0 */
static void decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98270,10 +88370,8 @@ static void decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -98282,7 +88380,6 @@ static void decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvbuff_t *tvb _
}
-
/* Struct = IDL:org/csapi/cc/TpCallEventInfo:1.0 */
static void decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98297,10 +88394,8 @@ static void decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -98310,10 +88405,8 @@ static void decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_inf
/* Begin union "org_csapi_cc_TpCallAdditionalEventInfo" */
-
decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAdditionalEventInfo" */
@@ -98333,7 +88426,6 @@ static void decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_inf
}
-
/* Struct = IDL:org/csapi/cc/TpNotificationRequestedSetEntry:1.0 */
static void decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98349,10 +88441,8 @@ static void decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpNotificationRequestedSetEntry_NotificationRequestSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpNotificationRequestedSetEntry_NotificationRequestSet = %u",u_octet4_loop_TpNotificationRequestedSetEntry_NotificationRequestSet);
@@ -98366,7 +88456,6 @@ static void decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb
decode_org_csapi_cc_TpNotificationRequested_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpNotificationRequested" */
}
@@ -98378,7 +88467,6 @@ static void decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb
}
-
/* Struct = IDL:org/csapi/cc/TpCarrier:1.0 */
static void decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98395,10 +88483,8 @@ static void decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpCarrier_CarrierID = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpCarrier_CarrierID = %u",u_octet4_loop_TpCarrier_CarrierID);
@@ -98421,7 +88507,6 @@ static void decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pin
}
-
/* Struct = IDL:org/csapi/cc/TpCallNotificationInfo:1.0 */
static void decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98436,17 +88521,14 @@ static void decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cc_TpCallNotificationReportScope" */
decode_org_csapi_cc_TpCallNotificationReportScope_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationReportScope" */
u_octet4_loop_TpCallNotificationInfo_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -98459,10 +88541,8 @@ static void decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, pac
/* Begin union "org_csapi_cc_TpCallAppInfo" */
-
decode_org_csapi_cc_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAppInfo" */
}
@@ -98473,12 +88553,10 @@ static void decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, pac
decode_org_csapi_cc_TpCallEventInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallEventInfo" */
}
-
/* Struct = IDL:org/csapi/cc/TpCallLegInfoReport:1.0 */
static void decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98496,10 +88574,8 @@ static void decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
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,"TpCallLegInfoReport_CallLegInfoType = %i",s_octet4);
@@ -98547,7 +88623,6 @@ static void decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
@@ -98566,17 +88641,14 @@ static void decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet
/* Begin union "org_csapi_cc_TpCallAppInfo" */
-
decode_org_csapi_cc_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAppInfo" */
}
}
-
/* Struct = IDL:org/csapi/cc/TpCallLegProperty:1.0 */
static void decode_org_csapi_cc_TpCallLegProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98591,10 +88663,8 @@ static void decode_org_csapi_cc_TpCallLegProperty_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpCallLegProperty_CallLegPropertyName (%u) = %s",
@@ -98615,7 +88685,6 @@ static void decode_org_csapi_cc_TpCallLegProperty_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/cc/mpccs/TpMultiPartyCallIdentifier:1.0 */
static void decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98629,10 +88698,8 @@ static void decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -98643,7 +88710,6 @@ static void decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvbuff_t *tv
}
-
/* Struct = IDL:org/csapi/cc/mpccs/TpCallLegIdentifier:1.0 */
static void decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98657,10 +88723,8 @@ static void decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -98671,7 +88735,6 @@ static void decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/mpccs/TpAppCallLegCallBack:1.0 */
static void decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98686,10 +88749,8 @@ static void decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -98707,7 +88768,6 @@ static void decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpCallSuperviseVolume:1.0 */
static void decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98721,10 +88781,8 @@ static void decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
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,"TpCallSuperviseVolume_VolumeQuantity = %i",s_octet4);
@@ -98737,7 +88795,6 @@ static void decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpMediaStreamRequest:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98751,10 +88808,8 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -98764,10 +88819,8 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvbuff_t *tvb _U_,
/* Begin union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */
-
decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */
@@ -98784,7 +88837,6 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpMediaStream:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98799,10 +88851,8 @@ static void decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -98812,10 +88862,8 @@ static void decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet
/* Begin union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */
-
decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -98828,7 +88876,6 @@ static void decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpNotificationMediaRequest:1.0 */
static void decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98843,17 +88890,14 @@ static void decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cc_TpCallNotificationScope" */
decode_org_csapi_cc_TpCallNotificationScope_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallNotificationScope" */
u_octet4_loop_TpNotificationMediaRequest_MediaStreamsRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -98869,14 +88913,12 @@ static void decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tv
decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpMediaStreamRequest" */
}
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpMediaNotificationRequested:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98890,17 +88932,14 @@ static void decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */
decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -98910,7 +88949,6 @@ static void decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvbuff_t *
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpMultiMediaCallIdentifier:1.0 */
static void decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98924,10 +88962,8 @@ static void decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -98938,7 +88974,6 @@ static void decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvbuff_t *tv
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpMultiMediaCallLegIdentifier:1.0 */
static void decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98952,10 +88987,8 @@ static void decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -98966,7 +88999,6 @@ static void decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvbuff_t
}
-
/* Struct = IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallLegCallBack:1.0 */
static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -98981,10 +89013,8 @@ static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -99002,7 +89032,6 @@ static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvbuff_t
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpMonoMediaConfPolicy:1.0 */
static void decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99016,10 +89045,8 @@ static void decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-1,1,"TpMonoMediaConfPolicy_JoinAllowed = %u",u_octet1);
@@ -99027,7 +89054,6 @@ static void decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpJoinEventInfo:1.0 */
static void decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99042,17 +89068,14 @@ static void decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packe
/* 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" */
@@ -99061,7 +89084,6 @@ static void decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_TpJoinEventInfo_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -99074,17 +89096,14 @@ static void decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packe
/* Begin union "org_csapi_cc_TpCallAppInfo" */
-
decode_org_csapi_cc_TpCallAppInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cc_TpCallAppInfo" */
}
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpConfSearchCriteria:1.0 */
static void decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99100,10 +89119,8 @@ static void decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpConfSearchCriteria_StartSearch (%u) = %s",
@@ -99134,7 +89151,6 @@ static void decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpConfSearchResult:1.0 */
static void decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99151,10 +89167,8 @@ static void decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-1,1,"TpConfSearchResult_MatchFound = %u",u_octet1);
@@ -99181,7 +89195,6 @@ static void decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpMultiMediaConfPolicy:1.0 */
static void decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99197,10 +89210,8 @@ static void decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-1,1,"TpMultiMediaConfPolicy_JoinAllowed = %u",u_octet1);
@@ -99224,7 +89235,6 @@ static void decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpResourceReservation:1.0 */
static void decode_org_csapi_cc_cccs_TpResourceReservation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99238,17 +89248,14 @@ static void decode_org_csapi_cc_cccs_TpResourceReservation_st(tvbuff_t *tvb _U_,
/* 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" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -99258,7 +89265,6 @@ static void decode_org_csapi_cc_cccs_TpResourceReservation_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpConfCallIdentifier:1.0 */
static void decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99272,10 +89278,8 @@ static void decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -99286,7 +89290,6 @@ static void decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cc/cccs/TpSubConfCallIdentifier:1.0 */
static void decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99300,10 +89303,8 @@ static void decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -99314,7 +89315,6 @@ static void decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvbuff_t *tvb _U
}
-
/* Struct = IDL:org/csapi/ui/TpUIIdentifier:1.0 */
static void decode_org_csapi_ui_TpUIIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99328,10 +89328,8 @@ static void decode_org_csapi_ui_TpUIIdentifier_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -99342,7 +89340,6 @@ static void decode_org_csapi_ui_TpUIIdentifier_st(tvbuff_t *tvb _U_, packet_info
}
-
/* Struct = IDL:org/csapi/ui/TpUICallIdentifier:1.0 */
static void decode_org_csapi_ui_TpUICallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99356,10 +89353,8 @@ static void decode_org_csapi_ui_TpUICallIdentifier_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -99370,7 +89365,6 @@ static void decode_org_csapi_ui_TpUICallIdentifier_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/mm/TpLocationResponseTime:1.0 */
static void decode_org_csapi_mm_TpLocationResponseTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99385,10 +89379,8 @@ static void decode_org_csapi_mm_TpLocationResponseTime_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -99402,7 +89394,6 @@ static void decode_org_csapi_mm_TpLocationResponseTime_st(tvbuff_t *tvb _U_, pac
}
-
/* Struct = IDL:org/csapi/mm/TpLocationTrigger:1.0 */
static void decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99418,10 +89409,8 @@ static void decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4,4,"TpLocationTrigger_Longitude = %.6e",my_float);
@@ -99460,7 +89449,6 @@ static void decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/mm/TpLocationRequest:1.0 */
static void decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99477,10 +89465,8 @@ static void decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4,4,"TpLocationRequest_RequestedAccuracy = %.6e",my_float);
@@ -99492,7 +89478,6 @@ static void decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_mm_TpLocationResponseTime_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationResponseTime" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -99523,7 +89508,6 @@ static void decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/mm/TpGeographicalPosition:1.0 */
static void decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99539,10 +89523,8 @@ static void decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4,4,"TpGeographicalPosition_Longitude = %.6e",my_float);
@@ -99596,7 +89578,6 @@ static void decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, pac
}
-
/* Struct = IDL:org/csapi/mm/TpMobilityStopAssignmentData:1.0 */
static void decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99613,10 +89594,8 @@ static void decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
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,"TpMobilityStopAssignmentData_AssignmentId = %i",s_octet4);
@@ -99641,14 +89620,12 @@ static void decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
}
-
/* Struct = IDL:org/csapi/mm/TpUlExtendedData:1.0 */
static void decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99665,17 +89642,14 @@ static void decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_mm_TpGeographicalPosition" */
decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpGeographicalPosition" */
@@ -99724,7 +89698,6 @@ static void decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_in
}
-
/* Struct = IDL:org/csapi/mm/TpUserLocation:1.0 */
static void decode_org_csapi_mm_TpUserLocation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99738,17 +89711,14 @@ static void decode_org_csapi_mm_TpUserLocation_st(tvbuff_t *tvb _U_, packet_info
/* 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" */
@@ -99763,12 +89733,10 @@ static void decode_org_csapi_mm_TpUserLocation_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpGeographicalPosition" */
}
-
/* Struct = IDL:org/csapi/mm/TpUserLocationExtended:1.0 */
static void decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99784,17 +89752,14 @@ static void decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, pac
/* 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" */
@@ -99816,14 +89781,12 @@ static void decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, pac
decode_org_csapi_mm_TpUlExtendedData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUlExtendedData" */
}
}
-
/* Struct = IDL:org/csapi/mm/TpLocationTriggerCamel:1.0 */
static void decode_org_csapi_mm_TpLocationTriggerCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99837,10 +89800,8 @@ static void decode_org_csapi_mm_TpLocationTriggerCamel_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-1,1,"TpLocationTriggerCamel_UpdateInsideVlr = %u",u_octet1);
@@ -99853,7 +89814,6 @@ static void decode_org_csapi_mm_TpLocationTriggerCamel_st(tvbuff_t *tvb _U_, pac
}
-
/* Struct = IDL:org/csapi/mm/TpUserLocationCamel:1.0 */
static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99869,17 +89829,14 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
/* 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" */
@@ -99899,7 +89856,6 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpGeographicalPosition" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -99927,7 +89883,6 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -99941,7 +89896,6 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -99960,7 +89914,6 @@ static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/mm/TpUserLocationEmergencyRequest:1.0 */
static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -99976,10 +89929,8 @@ static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-1,1,"TpUserLocationEmergencyRequest_UserAddressPresent = %u",u_octet1);
@@ -99991,7 +89942,6 @@ static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -100042,12 +89992,10 @@ static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb
decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationRequest" */
}
-
/* Struct = IDL:org/csapi/mm/TpUserLocationEmergency:1.0 */
static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100064,10 +90012,8 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -100085,7 +90031,6 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -100147,7 +90092,6 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpGeographicalPosition" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -100190,7 +90134,6 @@ static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/mm/TpUserStatus:1.0 */
static void decode_org_csapi_mm_TpUserStatus_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100204,17 +90147,14 @@ static void decode_org_csapi_mm_TpUserStatus_st(tvbuff_t *tvb _U_, packet_info *
/* 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" */
@@ -100237,7 +90177,6 @@ static void decode_org_csapi_mm_TpUserStatus_st(tvbuff_t *tvb _U_, packet_info *
}
-
/* Struct = IDL:org/csapi/mm/TpTriggeredStatusRequest:1.0 */
static void decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100253,10 +90192,8 @@ static void decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpTriggeredStatusRequest_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpTriggeredStatusRequest_Users = %u",u_octet4_loop_TpTriggeredStatusRequest_Users);
@@ -100270,7 +90207,6 @@ static void decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, p
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -100282,7 +90218,6 @@ static void decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/mm/TpTriggeredStatusRequestSetEntry:1.0 */
static void decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100298,10 +90233,8 @@ static void decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpTriggeredStatusRequestSetEntry_Requests = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpTriggeredStatusRequestSetEntry_Requests = %u",u_octet4_loop_TpTriggeredStatusRequestSetEntry_Requests);
@@ -100315,7 +90248,6 @@ static void decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tv
decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpTriggeredStatusRequest" */
}
@@ -100327,7 +90259,6 @@ static void decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tv
}
-
/* Struct = IDL:org/csapi/mm/TpPeriodicLocationRequest:1.0 */
static void decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100343,10 +90274,8 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPeriodicLocationRequest_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPeriodicLocationRequest_Users = %u",u_octet4_loop_TpPeriodicLocationRequest_Users);
@@ -100360,7 +90289,6 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -100371,7 +90299,6 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_,
decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationRequest" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -100386,7 +90313,6 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/mm/TpPeriodicLocationRequestSetEntry:1.0 */
static void decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100402,10 +90328,8 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPeriodicLocationRequestSetEntry_Requests = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPeriodicLocationRequestSetEntry_Requests = %u",u_octet4_loop_TpPeriodicLocationRequestSetEntry_Requests);
@@ -100419,7 +90343,6 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *t
decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpPeriodicLocationRequest" */
}
@@ -100431,7 +90354,6 @@ static void decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *t
}
-
/* Struct = IDL:org/csapi/mm/TpTriggeredLocationRequest:1.0 */
static void decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100447,10 +90369,8 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpTriggeredLocationRequest_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpTriggeredLocationRequest_Users = %u",u_octet4_loop_TpTriggeredLocationRequest_Users);
@@ -100464,7 +90384,6 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -100475,7 +90394,6 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_,
decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpLocationRequest" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -100485,7 +90403,6 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/mm/TpTriggeredLocationRequestSetEntry:1.0 */
static void decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100501,10 +90418,8 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpTriggeredLocationRequestSetEntry_Requests = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpTriggeredLocationRequestSetEntry_Requests = %u",u_octet4_loop_TpTriggeredLocationRequestSetEntry_Requests);
@@ -100518,7 +90433,6 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *
decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpTriggeredLocationRequest" */
}
@@ -100530,7 +90444,6 @@ static void decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *
}
-
/* Struct = IDL:org/csapi/mm/TpUserStatusIndicatorExtended:1.0 */
static void decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100545,10 +90458,8 @@ static void decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -100562,7 +90473,6 @@ static void decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvbuff_t *tvb _
}
-
/* Struct = IDL:org/csapi/mm/TpUserInfo:1.0 */
static void decode_org_csapi_mm_TpUserInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100577,10 +90487,8 @@ static void decode_org_csapi_mm_TpUserInfo_st(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserInfo_UserName (%u) = %s",
@@ -100601,7 +90509,6 @@ static void decode_org_csapi_mm_TpUserInfo_st(tvbuff_t *tvb _U_, packet_info *pi
}
-
/* Struct = IDL:org/csapi/mm/TpNetworkStatusIndicator:1.0 */
static void decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100616,10 +90523,8 @@ static void decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNetworkStatusIndicator_CountryCode (%u) = %s",
@@ -100652,7 +90557,6 @@ static void decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/mm/TpUserStatusExtended:1.0 */
static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100667,10 +90571,8 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpUserStatusExtended_UserID (%u) = %s",
@@ -100692,7 +90594,6 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserStatusIndicatorExtended" */
@@ -100713,7 +90614,6 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpNetworkStatusIndicator" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -100740,7 +90640,6 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_mm_TpUserInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mm_TpUserInfo" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -100763,7 +90662,6 @@ static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/mm/TpBindingNotificationCriteria:1.0 */
static void decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100779,10 +90677,8 @@ static void decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
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,"TpBindingNotificationCriteria_NotificationCriteriaType = %i",s_octet4);
@@ -100801,14 +90697,12 @@ static void decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
}
-
/* Struct = IDL:org/csapi/termcap/TpTerminalCapabilities:1.0 */
static void decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100824,10 +90718,8 @@ static void decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpTerminalCapabilities_TerminalCapabilities (%u) = %s",
@@ -100844,7 +90736,6 @@ static void decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/termcap/TpTerminalCapabilityScope:1.0 */
static void decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100859,10 +90750,8 @@ static void decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -100880,7 +90769,6 @@ static void decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvbuff_t *tvb
}
-
/* Struct = IDL:org/csapi/dsc/TpChargePerVolume:1.0 */
static void decode_org_csapi_dsc_TpChargePerVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100894,10 +90782,8 @@ static void decode_org_csapi_dsc_TpChargePerVolume_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
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,"TpChargePerVolume_InitialCharge = %i",s_octet4);
@@ -100915,7 +90801,6 @@ static void decode_org_csapi_dsc_TpChargePerVolume_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionChargePlan:1.0 */
static void decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100930,17 +90815,13 @@ static void decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin union "org_csapi_dsc_TpDataSessionChargeOrder" */
-
decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_dsc_TpDataSessionChargeOrder" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -100963,7 +90844,6 @@ static void decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionError:1.0 */
static void decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -100978,10 +90858,8 @@ static void decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDataSessionError_ErrorTime (%u) = %s",
@@ -101000,15 +90878,12 @@ static void decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet
/* Begin union "org_csapi_dsc_TpDataSessionAdditionalErrorInfo" */
-
decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_dsc_TpDataSessionAdditionalErrorInfo" */
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionEventCriteria:1.0 */
static void decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101023,17 +90898,14 @@ static void decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpAddressRange" */
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -101042,7 +90914,6 @@ static void decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -101058,7 +90929,6 @@ static void decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionEventInfo:1.0 */
static void decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101073,17 +90943,14 @@ static void decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, pa
/* 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" */
@@ -101092,7 +90959,6 @@ static void decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -101114,7 +90980,6 @@ static void decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionReleaseCause:1.0 */
static void decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101128,10 +90993,8 @@ static void decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
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,"TpDataSessionReleaseCause_Value = %i",s_octet4);
@@ -101144,7 +91007,6 @@ static void decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionReport:1.0 */
static void decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101159,10 +91021,8 @@ static void decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -101187,15 +91047,12 @@ static void decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packe
/* Begin union "org_csapi_dsc_TpDataSessionAdditionalReportInfo" */
-
decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_dsc_TpDataSessionAdditionalReportInfo" */
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionReportRequest:1.0 */
static void decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101209,10 +91066,8 @@ static void decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -101227,7 +91082,6 @@ static void decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionSuperviseVolume:1.0 */
static void decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101241,10 +91095,8 @@ static void decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
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,"TpDataSessionSuperviseVolume_VolumeQuantity = %i",s_octet4);
@@ -101257,7 +91109,6 @@ static void decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvbuff_t *tvb _
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionEventCriteriaResult:1.0 */
static void decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101271,17 +91122,14 @@ static void decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_dsc_TpDataSessionEventCriteria" */
decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -101291,7 +91139,6 @@ static void decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvbuff_t *t
}
-
/* Struct = IDL:org/csapi/dsc/TpDataSessionIdentifier:1.0 */
static void decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101305,10 +91152,8 @@ static void decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -101319,7 +91164,6 @@ static void decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/gms/TpGMSNewMessageArrivedInfo:1.0 */
static void decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101335,17 +91179,14 @@ static void decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_
/* 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" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -101373,7 +91214,6 @@ static void decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/gms/TpGMSNewMessageArrivedCriteria:1.0 */
static void decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101388,17 +91228,14 @@ static void decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvbuff_t *tvb
/* 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" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -101412,7 +91249,6 @@ static void decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvbuff_t *tvb
}
-
/* Struct = IDL:org/csapi/gms/TpMailboxIdentifier:1.0 */
static void decode_org_csapi_gms_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101426,10 +91262,8 @@ static void decode_org_csapi_gms_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -101440,7 +91274,6 @@ static void decode_org_csapi_gms_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/gms/TpMailboxFolderIdentifier:1.0 */
static void decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101454,10 +91287,8 @@ static void decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -101468,7 +91299,6 @@ static void decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagTimePeriod:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101482,10 +91312,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
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,"TpNameDescrpTagTimePeriod_duration = %i",s_octet4);
@@ -101493,7 +91321,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagTimeOfDay:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101508,10 +91335,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagTimeOfDay_name (%u) = %s",
@@ -101547,7 +91372,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagString:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101562,10 +91386,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagString_name (%u) = %s",
@@ -101601,7 +91423,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, pack
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagMonth:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101617,10 +91438,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagMonth_name (%u) = %s",
@@ -101652,7 +91471,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagInt:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101668,10 +91486,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagInt_name (%u) = %s",
@@ -101703,7 +91519,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagDir:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagDir_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101718,10 +91533,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagDir_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDir_name (%u) = %s",
@@ -101754,7 +91567,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagDir_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagDayOfWeek:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101770,10 +91582,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDayOfWeek_name (%u) = %s",
@@ -101805,7 +91615,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagDateTime:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101820,10 +91629,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagDateTime_name (%u) = %s",
@@ -101859,7 +91666,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/cm/TpLossDescriptor:1.0 */
static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101872,17 +91678,14 @@ static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101891,7 +91694,6 @@ static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101900,7 +91702,6 @@ static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101909,7 +91710,6 @@ static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101918,7 +91718,6 @@ static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -101927,12 +91726,10 @@ static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpLoadDescriptor:1.0 */
static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -101945,17 +91742,14 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101964,7 +91758,6 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101973,7 +91766,6 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101982,7 +91774,6 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -101991,7 +91782,6 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102000,7 +91790,6 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102009,7 +91798,6 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -102018,12 +91806,10 @@ static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpJitterDescriptor:1.0 */
static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102036,17 +91822,14 @@ static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102055,7 +91838,6 @@ static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102064,7 +91846,6 @@ static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102073,7 +91854,6 @@ static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102082,7 +91862,6 @@ static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -102091,12 +91870,10 @@ static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpEndpoint:1.0 */
static void decode_org_csapi_cm_TpEndpoint_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102111,10 +91888,8 @@ static void decode_org_csapi_cm_TpEndpoint_st(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -102132,7 +91907,6 @@ static void decode_org_csapi_cm_TpEndpoint_st(tvbuff_t *tvb _U_, packet_info *pi
}
-
/* Struct = IDL:org/csapi/cm/TpDelayDescriptor:1.0 */
static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102145,17 +91919,14 @@ static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102164,7 +91935,6 @@ static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102173,7 +91943,6 @@ static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102182,7 +91951,6 @@ static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */
@@ -102191,7 +91959,6 @@ static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagInt" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -102200,12 +91967,10 @@ static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpNameDescrpTagExcessLoadAction:1.0 */
static void decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102220,10 +91985,8 @@ static void decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNameDescrpTagExcessLoadAction_name (%u) = %s",
@@ -102256,7 +92019,6 @@ static void decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvbuff_t *tvb
}
-
/* Struct = IDL:org/csapi/cm/TpValidityInfo:1.0 */
static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102269,17 +92031,14 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpNameDescrpTagDateTime" */
decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagDateTime" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */
@@ -102288,7 +92047,6 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagTimeOfDay" */
@@ -102297,7 +92055,6 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagTimeOfDay" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */
@@ -102306,7 +92063,6 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagDayOfWeek" */
@@ -102315,7 +92071,6 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagDayOfWeek" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagMonth" */
@@ -102324,7 +92079,6 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagMonth" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -102333,12 +92087,10 @@ static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpProvisionedQoSInfo:1.0 */
static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102351,17 +92103,14 @@ static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpDelayDescriptor" */
decode_org_csapi_cm_TpDelayDescriptor_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpDelayDescriptor" */
/* Begin struct "org_csapi_cm_TpLossDescriptor" */
@@ -102370,7 +92119,6 @@ static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_cm_TpLossDescriptor_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpLossDescriptor" */
/* Begin struct "org_csapi_cm_TpJitterDescriptor" */
@@ -102379,7 +92127,6 @@ static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_cm_TpJitterDescriptor_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpJitterDescriptor" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagExcessLoadAction" */
@@ -102388,7 +92135,6 @@ static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagExcessLoadAction" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -102397,12 +92143,10 @@ static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packe
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpPipeQoSInfo:1.0 */
static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102415,17 +92159,14 @@ static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cm_TpNameDescrpTagDir" */
decode_org_csapi_cm_TpNameDescrpTagDir_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagDir" */
/* Begin struct "org_csapi_cm_TpEndpoint" */
@@ -102434,7 +92175,6 @@ static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpEndpoint_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpEndpoint" */
/* Begin struct "org_csapi_cm_TpEndpoint" */
@@ -102443,7 +92183,6 @@ static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpEndpoint_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpEndpoint" */
/* Begin struct "org_csapi_cm_TpLoadDescriptor" */
@@ -102452,7 +92191,6 @@ static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpLoadDescriptor_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpLoadDescriptor" */
/* Begin struct "org_csapi_cm_TpLoadDescriptor" */
@@ -102461,7 +92199,6 @@ static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpLoadDescriptor_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpLoadDescriptor" */
/* Begin struct "org_csapi_cm_TpNameDescrpTagString" */
@@ -102470,12 +92207,10 @@ static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cm_TpNameDescrpTagString" */
}
-
/* Struct = IDL:org/csapi/cm/TpDsCodepoint:1.0 */
static void decode_org_csapi_cm_TpDsCodepoint_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102490,10 +92225,8 @@ static void decode_org_csapi_cm_TpDsCodepoint_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpDsCodepoint_match (%u) = %s",
@@ -102514,7 +92247,6 @@ static void decode_org_csapi_cm_TpDsCodepoint_st(tvbuff_t *tvb _U_, packet_info
}
-
/* Struct = IDL:org/csapi/cm/TpIPSubnet:1.0 */
static void decode_org_csapi_cm_TpIPSubnet_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102529,10 +92261,8 @@ static void decode_org_csapi_cm_TpIPSubnet_st(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpIPSubnet_subnetNumber (%u) = %s",
@@ -102565,7 +92295,6 @@ static void decode_org_csapi_cm_TpIPSubnet_st(tvbuff_t *tvb _U_, packet_info *pi
}
-
/* Struct = IDL:org/csapi/am/TpBalanceInfo:1.0 */
static void decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102581,10 +92310,8 @@ static void decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBalanceInfo_Currency (%u) = %s",
@@ -102620,7 +92347,6 @@ static void decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info
}
-
/* Struct = IDL:org/csapi/am/TpChargingEventInfo:1.0 */
static void decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102635,10 +92361,8 @@ static void decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -102651,7 +92375,6 @@ static void decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet
decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalanceInfo" */
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
@@ -102665,7 +92388,6 @@ static void decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/am/TpBalance:1.0 */
static void decode_org_csapi_am_TpBalance_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102679,17 +92401,14 @@ static void decode_org_csapi_am_TpBalance_st(tvbuff_t *tvb _U_, packet_info *pin
/* 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" */
@@ -102704,12 +92423,10 @@ static void decode_org_csapi_am_TpBalance_st(tvbuff_t *tvb _U_, packet_info *pin
decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalanceInfo" */
}
-
/* Struct = IDL:org/csapi/am/TpTransactionHistory:1.0 */
static void decode_org_csapi_am_TpTransactionHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102725,10 +92442,8 @@ static void decode_org_csapi_am_TpTransactionHistory_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
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,"TpTransactionHistory_TransactionID = %i",s_octet4);
@@ -102754,7 +92469,6 @@ static void decode_org_csapi_am_TpTransactionHistory_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/am/TpChargingEventCriteria:1.0 */
static void decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102772,10 +92486,8 @@ static void decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpChargingEventCriteria_ChargingEvents = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpChargingEventCriteria_ChargingEvents = %u",u_octet4_loop_TpChargingEventCriteria_ChargingEvents);
@@ -102804,14 +92516,12 @@ static void decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, pa
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
}
-
/* Struct = IDL:org/csapi/am/TpChargingEventCriteriaResult:1.0 */
static void decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102825,17 +92535,14 @@ static void decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_am_TpChargingEventCriteria" */
decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpChargingEventCriteria" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -102845,7 +92552,6 @@ static void decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvbuff_t *tvb _
}
-
/* Struct = IDL:org/csapi/am/TpBalanceExpiryDate:1.0 */
static void decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102860,17 +92566,14 @@ static void decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet
/* 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" */
@@ -102890,7 +92593,6 @@ static void decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/am/TpVoucher:1.0 */
static void decode_org_csapi_am_TpVoucher_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102904,10 +92606,8 @@ static void decode_org_csapi_am_TpVoucher_st(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
-
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,"TpVoucher_VoucherID = %i",s_octet4);
@@ -102919,7 +92619,6 @@ static void decode_org_csapi_am_TpVoucher_st(tvbuff_t *tvb _U_, packet_info *pin
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
/* Begin struct "org_csapi_am_TpBalanceInfo" */
@@ -102928,12 +92627,10 @@ static void decode_org_csapi_am_TpVoucher_st(tvbuff_t *tvb _U_, packet_info *pin
decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_am_TpBalanceInfo" */
}
-
/* Struct = IDL:org/csapi/cs/TpMerchantAccountID:1.0 */
static void decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102949,10 +92646,8 @@ static void decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMerchantAccountID_MerchantID (%u) = %s",
@@ -102969,7 +92664,6 @@ static void decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/cs/TpCorrelationID:1.0 */
static void decode_org_csapi_cs_TpCorrelationID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -102983,10 +92677,8 @@ static void decode_org_csapi_cs_TpCorrelationID_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
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,"TpCorrelationID_CorrelationID = %i",s_octet4);
@@ -102999,7 +92691,6 @@ static void decode_org_csapi_cs_TpCorrelationID_st(tvbuff_t *tvb _U_, packet_inf
}
-
/* Struct = IDL:org/csapi/cs/TpAmount:1.0 */
static void decode_org_csapi_cs_TpAmount_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103013,10 +92704,8 @@ static void decode_org_csapi_cs_TpAmount_st(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
-
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,"TpAmount_Number = %i",s_octet4);
@@ -103029,7 +92718,6 @@ static void decode_org_csapi_cs_TpAmount_st(tvbuff_t *tvb _U_, packet_info *pinf
}
-
/* Struct = IDL:org/csapi/cs/TpChargingPrice:1.0 */
static void decode_org_csapi_cs_TpChargingPrice_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103044,10 +92732,8 @@ static void decode_org_csapi_cs_TpChargingPrice_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpChargingPrice_Currency (%u) = %s",
@@ -103063,12 +92749,10 @@ static void decode_org_csapi_cs_TpChargingPrice_st(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_cs_TpAmount_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpAmount" */
}
-
/* Struct = IDL:org/csapi/cs/TpVolume:1.0 */
static void decode_org_csapi_cs_TpVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103082,17 +92766,14 @@ static void decode_org_csapi_cs_TpVolume_st(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cs_TpAmount" */
decode_org_csapi_cs_TpAmount_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpAmount" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -103102,7 +92783,6 @@ static void decode_org_csapi_cs_TpVolume_st(tvbuff_t *tvb _U_, packet_info *pinf
}
-
/* Struct = IDL:org/csapi/cs/TpChargingSessionID:1.0 */
static void decode_org_csapi_cs_TpChargingSessionID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103116,10 +92796,8 @@ static void decode_org_csapi_cs_TpChargingSessionID_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -103135,7 +92813,6 @@ static void decode_org_csapi_cs_TpChargingSessionID_st(tvbuff_t *tvb _U_, packet
}
-
/* Struct = IDL:org/csapi/cs/TpPriceVolume:1.0 */
static void decode_org_csapi_cs_TpPriceVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103148,17 +92825,14 @@ static void decode_org_csapi_cs_TpPriceVolume_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_cs_TpChargingPrice" */
decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpChargingPrice" */
/* Begin struct "org_csapi_cs_TpVolume" */
@@ -103167,12 +92841,10 @@ static void decode_org_csapi_cs_TpPriceVolume_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cs_TpVolume" */
}
-
/* Struct = IDL:org/csapi/cs/TpApplicationDescription:1.0 */
static void decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103189,10 +92861,8 @@ static void decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpApplicationDescription_Text (%u) = %s",
@@ -103212,17 +92882,14 @@ static void decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, p
/* Begin union "org_csapi_cs_TpAppInformation" */
-
decode_org_csapi_cs_TpAppInformation_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cs_TpAppInformation" */
}
}
-
/* Struct = IDL:org/csapi/cs/TpChargingParameter:1.0 */
static void decode_org_csapi_cs_TpChargingParameter_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103236,10 +92903,8 @@ static void decode_org_csapi_cs_TpChargingParameter_st(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
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,"TpChargingParameter_ParameterID = %i",s_octet4);
@@ -103248,15 +92913,12 @@ static void decode_org_csapi_cs_TpChargingParameter_st(tvbuff_t *tvb _U_, packet
/* Begin union "org_csapi_cs_TpChargingParameterValue" */
-
decode_org_csapi_cs_TpChargingParameterValue_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_cs_TpChargingParameterValue" */
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyEvent:1.0 */
static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103274,10 +92936,8 @@ static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
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,"TpPolicyEvent_EventID = %i",s_octet4);
@@ -103305,7 +92965,6 @@ static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
@@ -103330,7 +92989,6 @@ static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyNameValue:1.0 */
static void decode_org_csapi_policy_TpPolicyNameValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103345,10 +93003,8 @@ static void decode_org_csapi_policy_TpPolicyNameValue_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyNameValue_Name (%u) = %s",
@@ -103360,10 +93016,8 @@ static void decode_org_csapi_policy_TpPolicyNameValue_st(tvbuff_t *tvb _U_, pack
get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header);
-
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyType/TpPolicyRecordType:1.0 */
static void decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103382,10 +93036,8 @@ static void decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPolicyRecordType_Names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPolicyRecordType_Names = %u",u_octet4_loop_TpPolicyRecordType_Names);
@@ -103414,17 +93066,14 @@ static void decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t
/* Begin union "org_csapi_policy_TpPolicyType" */
-
decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_policy_TpPolicyType" */
}
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyType/TpPolicyListType:1.0 */
static void decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103439,10 +93088,8 @@ static void decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPolicyListType_ElementType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPolicyListType_ElementType = %u",u_octet4_loop_TpPolicyListType_ElementType);
@@ -103453,17 +93100,14 @@ static void decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *t
/* Begin union "org_csapi_policy_TpPolicyType" */
-
decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_policy_TpPolicyType" */
}
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyVar:1.0 */
static void decode_org_csapi_policy_TpPolicyVar_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103478,10 +93122,8 @@ static void decode_org_csapi_policy_TpPolicyVar_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPolicyVar_VarName (%u) = %s",
@@ -103494,18 +93136,14 @@ static void decode_org_csapi_policy_TpPolicyVar_st(tvbuff_t *tvb _U_, packet_inf
/* Begin union "org_csapi_policy_TpPolicyType" */
-
decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_policy_TpPolicyType" */
get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header);
-
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyConditionListElement:1.0 */
static void decode_org_csapi_policy_TpPolicyConditionListElement_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103520,10 +93158,8 @@ static void decode_org_csapi_policy_TpPolicyConditionListElement_st(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -103539,7 +93175,6 @@ static void decode_org_csapi_policy_TpPolicyConditionListElement_st(tvbuff_t *tv
}
-
/* Struct = IDL:org/csapi/policy/TpPolicyActionListElement:1.0 */
static void decode_org_csapi_policy_TpPolicyActionListElement_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103553,10 +93188,8 @@ static void decode_org_csapi_policy_TpPolicyActionListElement_st(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -103567,7 +93200,6 @@ static void decode_org_csapi_policy_TpPolicyActionListElement_st(tvbuff_t *tvb _
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAttributeDef:1.0 */
static void decode_org_csapi_pam_TpPAMAttributeDef_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103583,10 +93215,8 @@ static void decode_org_csapi_pam_TpPAMAttributeDef_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttributeDef_Name (%u) = %s",
@@ -103617,10 +93247,8 @@ static void decode_org_csapi_pam_TpPAMAttributeDef_st(tvbuff_t *tvb _U_, packet_
get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header);
-
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAttribute:1.0 */
static void decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103632,13 +93260,12 @@ static void decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_inf
guint32 u_octet4;
gchar *seq = NULL;
+ gint64 s_octet8;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAttribute_AttributeName (%u) = %s",
@@ -103651,18 +93278,17 @@ static void decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_inf
/* Begin union "org_csapi_TpAttributeValue" */
-
decode_org_csapi_TpAttributeValue_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_TpAttributeValue" */
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"TpPAMAttribute_ExpiresIn = PRIo64",s_octet8);
+ }
}
-
/* Struct = IDL:org/csapi/pam/TpPAMPresenceData:1.0 */
static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103678,10 +93304,8 @@ static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMPresenceData_Name (%u) = %s",
@@ -103724,7 +93348,6 @@ static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_
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);
@@ -103761,7 +93384,6 @@ static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAvailabilityProfile:1.0 */
static void decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103776,10 +93398,8 @@ static void decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAvailabilityProfile_PrivacyCode (%u) = %s",
@@ -103795,12 +93415,10 @@ static void decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvbuff_t *tvb _U_,
decode_org_csapi_pam_TpPAMPresenceData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMPresenceData" */
}
-
/* Struct = IDL:org/csapi/pam/TpPAMCommunicationContext:1.0 */
static void decode_org_csapi_pam_TpPAMCommunicationContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103815,10 +93433,8 @@ static void decode_org_csapi_pam_TpPAMCommunicationContext_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCommunicationContext_CommunicationCapability (%u) = %s",
@@ -103830,7 +93446,6 @@ static void decode_org_csapi_pam_TpPAMCommunicationContext_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/pam/TpPAMContext:1.0 */
static void decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103845,17 +93460,13 @@ static void decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin union "org_csapi_pam_TpPAMContextData" */
-
decode_org_csapi_pam_TpPAMContextData_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_pam_TpPAMContextData" */
u_octet4_loop_TpPAMContext_AskerData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -103871,14 +93482,12 @@ static void decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAttribute" */
}
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAccessControlData:1.0 */
static void decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103897,10 +93506,8 @@ static void decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -103945,7 +93552,6 @@ static void decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/pam/TpPAMICEventData:1.0 */
static void decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -103962,10 +93568,8 @@ static void decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMICEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMICEventData_IdentityType = %u",u_octet4_loop_TpPAMICEventData_IdentityType);
@@ -103986,7 +93590,6 @@ static void decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMICNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104003,10 +93606,8 @@ static void decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMICNotificationData_Identities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMICNotificationData_Identities = %u",u_octet4_loop_TpPAMICNotificationData_Identities);
@@ -104027,7 +93628,6 @@ static void decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMIDEventData:1.0 */
static void decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104046,10 +93646,8 @@ static void decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMIDEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMIDEventData_IdentityName = %u",u_octet4_loop_TpPAMIDEventData_IdentityName);
@@ -104088,7 +93686,6 @@ static void decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMIDNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104105,10 +93702,8 @@ static void decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMIDNotificationData_Identities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMIDNotificationData_Identities = %u",u_octet4_loop_TpPAMIDNotificationData_Identities);
@@ -104129,7 +93724,6 @@ static void decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMGMCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104148,10 +93742,8 @@ static void decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMGMCEventData_GroupName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMGMCEventData_GroupName = %u",u_octet4_loop_TpPAMGMCEventData_GroupName);
@@ -104190,7 +93782,6 @@ static void decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_
}
-
/* Struct = IDL:org/csapi/pam/TpPAMGMCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104207,10 +93798,8 @@ static void decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMGMCNotificationData_Groups = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMGMCNotificationData_Groups = %u",u_octet4_loop_TpPAMGMCNotificationData_Groups);
@@ -104231,7 +93820,6 @@ static void decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/pam/TpPAMACEventData:1.0 */
static void decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104248,10 +93836,8 @@ static void decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMACEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMACEventData_AgentType = %u",u_octet4_loop_TpPAMACEventData_AgentType);
@@ -104272,7 +93858,6 @@ static void decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMACNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104289,10 +93874,8 @@ static void decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMACNotificationData_Agents = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMACNotificationData_Agents = %u",u_octet4_loop_TpPAMACNotificationData_Agents);
@@ -104313,7 +93896,6 @@ static void decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMADEventData:1.0 */
static void decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104332,10 +93914,8 @@ static void decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMADEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMADEventData_AgentName = %u",u_octet4_loop_TpPAMADEventData_AgentName);
@@ -104374,7 +93954,6 @@ static void decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMADNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104391,10 +93970,8 @@ static void decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMADNotificationData_Agents = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMADNotificationData_Agents = %u",u_octet4_loop_TpPAMADNotificationData_Agents);
@@ -104415,7 +93992,6 @@ static void decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAAEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104438,10 +94014,8 @@ static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMAAEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMAAEventData_IdentityName = %u",u_octet4_loop_TpPAMAAEventData_IdentityName);
@@ -104516,7 +94090,6 @@ static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAANotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAANotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104531,10 +94104,8 @@ static void decode_org_csapi_pam_TpPAMAANotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAANotificationData_Identity (%u) = %s",
@@ -104555,7 +94126,6 @@ static void decode_org_csapi_pam_TpPAMAANotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAUEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104578,10 +94148,8 @@ static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMAUEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMAUEventData_IdentityName = %u",u_octet4_loop_TpPAMAUEventData_IdentityName);
@@ -104656,7 +94224,6 @@ static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAUNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAUNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104671,10 +94238,8 @@ static void decode_org_csapi_pam_TpPAMAUNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAUNotificationData_Identity (%u) = %s",
@@ -104695,7 +94260,6 @@ static void decode_org_csapi_pam_TpPAMAUNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMCCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104716,10 +94280,8 @@ static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMCCEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMCCEventData_IdentityName = %u",u_octet4_loop_TpPAMCCEventData_IdentityName);
@@ -104776,7 +94338,6 @@ static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
/* Struct = IDL:org/csapi/pam/TpPAMCCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104793,10 +94354,8 @@ static void decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMCCNotificationData_Identity (%u) = %s",
@@ -104826,7 +94385,6 @@ static void decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMACPSEventData:1.0 */
static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104846,13 +94404,12 @@ static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet
guint32 i_TpPAMACPSEventData_Capabilities;
guint32 u_octet4_loop_TpPAMACPSEventData_AttributeNames;
guint32 i_TpPAMACPSEventData_AttributeNames;
+ gint64 s_octet8;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMACPSEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMACPSEventData_AgentName = %u",u_octet4_loop_TpPAMACPSEventData_AgentName);
@@ -104925,12 +94482,13 @@ static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"TpPAMACPSEventData_ReportingPeriod = PRIo64",s_octet8);
+ }
}
-
/* Struct = IDL:org/csapi/pam/TpPAMACPSNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -104947,10 +94505,8 @@ static void decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMACPSNotificationData_Agent (%u) = %s",
@@ -104989,7 +94545,6 @@ static void decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAPSEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105007,13 +94562,12 @@ static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_
guint32 i_TpPAMAPSEventData_AgentType;
guint32 u_octet4_loop_TpPAMAPSEventData_AttributeNames;
guint32 i_TpPAMAPSEventData_AttributeNames;
+ gint64 s_octet8;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMAPSEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMAPSEventData_AgentName = %u",u_octet4_loop_TpPAMAPSEventData_AgentName);
@@ -105068,12 +94622,13 @@ static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"TpPAMAPSEventData_ReportingPeriod = PRIo64",s_octet8);
+ }
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAPSNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105090,10 +94645,8 @@ static void decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAPSNotificationData_Agent (%u) = %s",
@@ -105123,7 +94676,6 @@ static void decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_,
}
-
/* Struct = IDL:org/csapi/pam/TpPAMIPSEventData:1.0 */
static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105141,13 +94693,12 @@ static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_
guint32 i_TpPAMIPSEventData_IdentityType;
guint32 u_octet4_loop_TpPAMIPSEventData_AttributeNames;
guint32 i_TpPAMIPSEventData_AttributeNames;
+ gint64 s_octet8;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMIPSEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMIPSEventData_IdentityName = %u",u_octet4_loop_TpPAMIPSEventData_IdentityName);
@@ -105202,12 +94753,13 @@ static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"TpPAMIPSEventData_ReportingPeriod = PRIo64",s_octet8);
+ }
}
-
/* Struct = IDL:org/csapi/pam/TpPAMIPSNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105224,10 +94776,8 @@ static void decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMIPSNotificationData_Identity (%u) = %s",
@@ -105250,14 +94800,12 @@ static void decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_,
decode_org_csapi_pam_TpPAMPresenceData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMPresenceData" */
}
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAVCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105277,13 +94825,12 @@ static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_
guint32 i_TpPAMAVCEventData_PAMContext;
guint32 u_octet4_loop_TpPAMAVCEventData_AttributeNames;
guint32 i_TpPAMAVCEventData_AttributeNames;
+ gint64 s_octet8;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMAVCEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMAVCEventData_IdentityName = %u",u_octet4_loop_TpPAMAVCEventData_IdentityName);
@@ -105333,7 +94880,6 @@ static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_
decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMContext" */
}
@@ -105356,12 +94902,13 @@ static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"TpPAMAVCEventData_ReportingPeriod = PRIo64",s_octet8);
+ }
}
-
/* Struct = IDL:org/csapi/pam/TpPAMAVCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105378,10 +94925,8 @@ static void decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpPAMAVCNotificationData_Identity (%u) = %s",
@@ -105404,14 +94949,12 @@ static void decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_,
decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAvailabilityProfile" */
}
}
-
/* Struct = IDL:org/csapi/pam/TpPAMWCEventData:1.0 */
static void decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105429,13 +94972,12 @@ static void decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_i
gchar *seq = NULL;
guint32 u_octet4_loop_TpPAMWCEventData_IdentityType;
guint32 i_TpPAMWCEventData_IdentityType;
+ gint64 s_octet8;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpPAMWCEventData_Events = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpPAMWCEventData_Events = %u",u_octet4_loop_TpPAMWCEventData_Events);
@@ -105487,12 +95029,13 @@ static void decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_i
}
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"TpPAMWCEventData_ReportingPeriod = PRIo64",s_octet8);
+ }
}
-
/* Struct = IDL:org/csapi/pam/TpPAMWCNotificationData:1.0 */
static void decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105509,10 +95052,8 @@ static void decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -105554,7 +95095,6 @@ static void decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, p
}
-
/* Struct = IDL:org/csapi/pam/TpPAMErrorInfo:1.0 */
static void decode_org_csapi_pam_TpPAMErrorInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105568,10 +95108,8 @@ static void decode_org_csapi_pam_TpPAMErrorInfo_st(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -105581,15 +95119,12 @@ static void decode_org_csapi_pam_TpPAMErrorInfo_st(tvbuff_t *tvb _U_, packet_inf
/* Begin union "org_csapi_pam_TpPAMNotificationInfo" */
-
decode_org_csapi_pam_TpPAMNotificationInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_pam_TpPAMNotificationInfo" */
}
-
/* Struct = IDL:org/csapi/mmm/TpMailboxIdentifier:1.0 */
static void decode_org_csapi_mmm_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105603,10 +95138,8 @@ static void decode_org_csapi_mmm_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -105617,7 +95150,6 @@ static void decode_org_csapi_mmm_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/mmm/TpMultiMediaMessagingIdentifier:1.0 */
static void decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105631,10 +95163,8 @@ static void decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvbuff_t *tv
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
@@ -105645,7 +95175,6 @@ static void decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvbuff_t *tv
}
-
/* Struct = IDL:org/csapi/mmm/TpListMessagesCriteria:1.0 */
static void decode_org_csapi_mmm_TpListMessagesCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105659,10 +95188,8 @@ static void decode_org_csapi_mmm_TpListMessagesCriteria_st(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-1,1,"TpListMessagesCriteria_OnlyUnreadMessages = %u",u_octet1);
@@ -105670,7 +95197,6 @@ static void decode_org_csapi_mmm_TpListMessagesCriteria_st(tvbuff_t *tvb _U_, pa
}
-
/* Struct = IDL:org/csapi/mmm/TpMailboxFolderStatusInformation:1.0 */
static void decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105684,10 +95210,8 @@ static void decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvbuff_t *t
/* Operation specific Variable declarations End */
-
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,"TpMailboxFolderStatusInformation_TotalMessageCount = %i",s_octet4);
@@ -105695,7 +95219,6 @@ static void decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvbuff_t *t
}
-
/* Struct = IDL:org/csapi/mmm/TpMessageDescription:1.0 */
static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105713,10 +95236,8 @@ static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpMessageDescription_MessageID (%u) = %s",
@@ -105732,7 +95253,6 @@ static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
u_octet4_loop_TpMessageDescription_To = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -105748,7 +95268,6 @@ static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -105778,7 +95297,6 @@ static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, pack
}
-
/* Struct = IDL:org/csapi/mmm/TpBodyPartDescription:1.0 */
static void decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105794,10 +95312,8 @@ static void decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpBodyPartDescription_ContentDescription (%u) = %s",
@@ -105864,7 +95380,6 @@ static void decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, pac
}
-
/* Struct = IDL:org/csapi/mmm/TpBodyPart:1.0 */
static void decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105880,17 +95395,14 @@ static void decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_mmm_TpBodyPartDescription" */
decode_org_csapi_mmm_TpBodyPartDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpBodyPartDescription" */
u_octet4_loop_TpBodyPart_BodyPartContent = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -105909,7 +95421,6 @@ static void decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *p
}
-
/* Struct = IDL:org/csapi/mmm/TpGenericHeaderField:1.0 */
static void decode_org_csapi_mmm_TpGenericHeaderField_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105924,10 +95435,8 @@ static void decode_org_csapi_mmm_TpGenericHeaderField_st(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpGenericHeaderField_FieldName (%u) = %s",
@@ -105948,7 +95457,6 @@ static void decode_org_csapi_mmm_TpGenericHeaderField_st(tvbuff_t *tvb _U_, pack
}
-
/* Struct = IDL:org/csapi/mmm/TpMessageInfoPropertyError:1.0 */
static void decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105962,10 +95470,8 @@ static void decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvbuff_t *tvb _U_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -105980,7 +95486,6 @@ static void decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvbuff_t *tvb _U_
}
-
/* Struct = IDL:org/csapi/mmm/TpNewMailboxMessageArrivedCriteria:1.0 */
static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -105995,10 +95500,8 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedCriteria_MailboxID (%u) = %s",
@@ -106019,7 +95522,6 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvbuff_t
}
-
/* Struct = IDL:org/csapi/mmm/TpNewMailboxMessageArrivedInfo:1.0 */
static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106038,10 +95540,8 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"TpNewMailboxMessageArrivedInfo_MailboxID (%u) = %s",
@@ -106073,7 +95573,6 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb
decode_org_csapi_mmm_TpMessageDescription_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMessageDescription" */
}
@@ -106088,17 +95587,14 @@ static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb
/* Begin union "org_csapi_mmm_TpMessageHeaderField" */
-
decode_org_csapi_mmm_TpMessageHeaderField_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageHeaderField" */
}
}
-
/* Struct = IDL:org/csapi/mmm/TpQueryStatusReport:1.0 */
static void decode_org_csapi_mmm_TpQueryStatusReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106112,17 +95608,14 @@ static void decode_org_csapi_mmm_TpQueryStatusReport_st(tvbuff_t *tvb _U_, packe
/* 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" */
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
@@ -106132,7 +95625,6 @@ static void decode_org_csapi_mmm_TpQueryStatusReport_st(tvbuff_t *tvb _U_, packe
}
-
/* Struct = IDL:org/csapi/mmm/TpTerminatingAddressList:1.0 */
static void decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106151,10 +95643,8 @@ static void decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpTerminatingAddressList_ToAddressList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpTerminatingAddressList_ToAddressList = %u",u_octet4_loop_TpTerminatingAddressList_ToAddressList);
@@ -106168,7 +95658,6 @@ static void decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -106186,7 +95675,6 @@ static void decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -106204,14 +95692,12 @@ static void decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
}
-
/* Struct = IDL:org/csapi/mmm/TpNewMessageArrivedCriteria:1.0 */
static void decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106225,17 +95711,14 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/* Begin struct "org_csapi_TpAddressRange" */
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
/* Begin struct "org_csapi_TpAddressRange" */
@@ -106244,7 +95727,6 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U
decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddressRange" */
u_octet1 = get_CDR_boolean(tvb,offset);
@@ -106254,7 +95736,6 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U
}
-
/* Struct = IDL:org/csapi/mmm/TpMessagingNotificationRequested:1.0 */
static void decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106270,10 +95751,8 @@ static void decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpMessagingNotificationRequested_EventCriteria = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpMessagingNotificationRequested_EventCriteria = %u",u_octet4_loop_TpMessagingNotificationRequested_EventCriteria);
@@ -106284,10 +95763,8 @@ static void decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *t
/* Begin union "org_csapi_mmm_TpMessagingEventCriteria" */
-
decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessagingEventCriteria" */
}
@@ -106299,7 +95776,6 @@ static void decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *t
}
-
/* Struct = IDL:org/csapi/mmm/TpMessagingNotificationRequestedSetEntry:1.0 */
static void decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106315,10 +95791,8 @@ static void decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
u_octet4_loop_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-4, 4 ,"Seq length of TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet = %u",u_octet4_loop_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet);
@@ -106332,7 +95806,6 @@ static void decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvb
decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMessagingNotificationRequested" */
}
@@ -106344,7 +95817,6 @@ static void decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvb
}
-
/* Struct = IDL:org/csapi/mmm/TpNewMessageArrivedInfo:1.0 */
static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106364,17 +95836,14 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, p
/* 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" */
u_octet4_loop_TpNewMessageArrivedInfo_DestinationAddressSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -106390,7 +95859,6 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, p
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
@@ -106419,10 +95887,8 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, p
/* Begin union "org_csapi_mmm_TpMessageHeaderField" */
-
decode_org_csapi_mmm_TpMessageHeaderField_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpMessageHeaderField" */
}
@@ -106433,12 +95899,10 @@ static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, p
decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */
}
-
/* Union = IDL:org/csapi/TpAoCOrder:1.0 */
static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106454,14 +95918,11 @@ static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/TpAoCOrder:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -106472,12 +95933,10 @@ static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo
/*
* IDL Union - Discriminant - IDL:org/csapi/TpCallAoCOrderCategory:1.0
*/
-
disc_s_TpAoCOrder = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpAoCOrder == 0 ) {
-
/* Begin struct "org_csapi_TpChargeAdviceInfo" */
@@ -106485,15 +95944,12 @@ static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo
decode_org_csapi_TpChargeAdviceInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpChargeAdviceInfo" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAoCOrder == 1 ) {
-
/* Begin struct "org_csapi_TpChargePerTime" */
@@ -106501,15 +95957,12 @@ static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo
decode_org_csapi_TpChargePerTime_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpChargePerTime" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAoCOrder == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106522,11 +95975,9 @@ static void decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/TpSimpleAttributeValue:1.0 */
static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106544,19 +95995,18 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
gint16 s_octet2;
guint16 u_octet2;
gint32 s_octet4;
+ gint64 s_octet8;
+ guint64 u_octet8;
gfloat my_float;
gdouble my_double;
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/TpSimpleAttributeValue:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -106567,12 +96017,10 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
/*
* IDL Union - Discriminant - IDL:org/csapi/TpSimpleAttributeTypeInfo:1.0
*/
-
disc_s_TpSimpleAttributeValue = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpSimpleAttributeValue == 0 ) {
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
@@ -106581,10 +96029,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 1 ) {
-
u_octet1 = get_CDR_octet(tvb,offset);
if (tree) {
@@ -106593,10 +96039,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 2 ) {
-
u_octet1 = get_CDR_char(tvb,offset);
if (tree) {
@@ -106605,10 +96049,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 3 ) {
-
s_octet1 = get_CDR_wchar(tvb, &seq, offset, header);
if (tree) {
@@ -106628,10 +96070,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106644,10 +96084,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 5 ) {
-
u_octet4 = get_CDR_wstring(tvb, &seq, offset, stream_is_big_endian, boundary, header);
if (tree) {
@@ -106660,10 +96098,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 6 ) {
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -106672,10 +96108,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 7 ) {
-
u_octet2 = get_CDR_ushort(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -106684,10 +96118,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 8 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -106696,10 +96128,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 9 ) {
-
u_octet4 = get_CDR_ulong(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -106708,30 +96138,28 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 10 ) {
-
-
- /* WARNING - Unknown typecode = 23 */
+ s_octet8 = get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"Int64Value = PRIo64",s_octet8);
+ }
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 11 ) {
-
-
- /* WARNING - Unknown typecode = 24 */
+ u_octet8 = get_CDR_ulong_long(tvb,offset,stream_is_big_endian, boundary);
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-8,8,"UnsignedInt64Value = PRIu64",u_octet8);
+ }
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 12 ) {
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -106740,10 +96168,8 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpSimpleAttributeValue == 13 ) {
-
my_double = get_CDR_double(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -106752,11 +96178,9 @@ static void decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/TpAttributeValue:1.0 */
static void decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106772,14 +96196,11 @@ static void decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/TpAttributeValue:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -106790,28 +96211,22 @@ static void decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info
/*
* IDL Union - Discriminant - IDL:org/csapi/TpAttributeTagInfo:1.0
*/
-
disc_s_TpAttributeValue = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpAttributeValue == 0 ) {
-
/* Begin union "org_csapi_TpSimpleAttributeValue" */
-
decode_org_csapi_TpSimpleAttributeValue_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_TpSimpleAttributeValue" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAttributeValue == 1 ) {
-
/* Begin struct "org_csapi_TpStructuredAttributeValue" */
@@ -106819,15 +96234,12 @@ static void decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpStructuredAttributeValue_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpStructuredAttributeValue" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAttributeValue == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106840,11 +96252,9 @@ static void decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/fw/TpFwEventCriteria:1.0 */
static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -106874,14 +96284,11 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/fw/TpFwEventCriteria:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -106892,12 +96299,10 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
/*
* IDL Union - Discriminant - IDL:org/csapi/fw/TpFwEventName:1.0
*/
-
disc_s_TpFwEventCriteria = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpFwEventCriteria == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106910,10 +96315,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 1 ) {
-
u_octet4_loop_ServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106935,10 +96338,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 2 ) {
-
u_octet4_loop_UnavailableServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106960,10 +96361,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 3 ) {
-
u_octet4_loop_CompatibleServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -106985,10 +96384,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 4 ) {
-
u_octet4_loop_SessionCreatedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107010,10 +96407,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 5 ) {
-
u_octet4_loop_SessionTerminatedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107035,10 +96430,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 6 ) {
-
u_octet4_loop_AgreementSignedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107060,10 +96453,8 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventCriteria == 7 ) {
-
u_octet4_loop_AgreementEndedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107085,11 +96476,9 @@ static void decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_i
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/fw/TpLoadStatisticEntityID:1.0 */
static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107105,14 +96494,11 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/fw/TpLoadStatisticEntityID:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107123,12 +96509,10 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
/*
* IDL Union - Discriminant - IDL:org/csapi/fw/TpLoadStatisticEntityType:1.0
*/
-
disc_s_TpLoadStatisticEntityID = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpLoadStatisticEntityID == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107141,10 +96525,8 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpLoadStatisticEntityID == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107157,10 +96539,8 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpLoadStatisticEntityID == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107173,11 +96553,9 @@ static void decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, pa
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/fw/TpLoadStatisticInfo:1.0 */
static void decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107192,14 +96570,11 @@ static void decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/fw/TpLoadStatisticInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107210,12 +96585,10 @@ static void decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet
/*
* IDL Union - Discriminant - IDL:org/csapi/fw/TpLoadStatisticInfoType:1.0
*/
-
disc_s_TpLoadStatisticInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpLoadStatisticInfo == 0 ) {
-
/* Begin struct "org_csapi_fw_TpLoadStatisticData" */
@@ -107223,15 +96596,12 @@ static void decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet
decode_org_csapi_fw_TpLoadStatisticData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpLoadStatisticData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpLoadStatisticInfo == 1 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107241,11 +96611,9 @@ static void decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/fw/TpDomainID:1.0 */
static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107261,14 +96629,11 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/fw/TpDomainID:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107279,12 +96644,10 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
/*
* IDL Union - Discriminant - IDL:org/csapi/fw/TpDomainIDType:1.0
*/
-
disc_s_TpDomainID = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpDomainID == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107297,10 +96660,8 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpDomainID == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107313,10 +96674,8 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpDomainID == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107329,10 +96688,8 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpDomainID == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107345,10 +96702,8 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpDomainID == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107361,11 +96716,9 @@ static void decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pi
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/fw/TpMigrationAdditionalInfo:1.0 */
static void decode_org_csapi_fw_TpMigrationAdditionalInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107381,14 +96734,11 @@ static void decode_org_csapi_fw_TpMigrationAdditionalInfo_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/fw/TpMigrationAdditionalInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107399,25 +96749,21 @@ static void decode_org_csapi_fw_TpMigrationAdditionalInfo_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/fw/TpMigrationAdditionalInfoType:1.0
*/
-
disc_s_TpMigrationAdditionalInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/fw/TpFwEventInfo:1.0 */
static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107437,14 +96783,11 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/fw/TpFwEventInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107455,12 +96798,10 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
/*
* IDL Union - Discriminant - IDL:org/csapi/fw/TpFwEventName:1.0
*/
-
disc_s_TpFwEventInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpFwEventInfo == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107473,10 +96814,8 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 1 ) {
-
u_octet4_loop_ServiceIDList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107498,10 +96837,8 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 2 ) {
-
u_octet4_loop_UnavailableServiceIDList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107523,10 +96860,8 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 3 ) {
-
/* Begin struct "org_csapi_fw_TpFwMigrationServiceAvailableInfo" */
@@ -107534,15 +96869,12 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFwMigrationServiceAvailableInfo" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107555,10 +96887,8 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 5 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107571,10 +96901,8 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 6 ) {
-
/* Begin struct "org_csapi_fw_TpFwAgreementInfo" */
@@ -107582,15 +96910,12 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_fw_TpFwAgreementInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFwAgreementInfo" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFwEventInfo == 7 ) {
-
/* Begin struct "org_csapi_fw_TpFwAgreementInfo" */
@@ -107598,16 +96923,13 @@ static void decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_fw_TpFwAgreementInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_fw_TpFwAgreementInfo" */
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/ui/TpUIVariableInfo:1.0 */
static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107624,14 +96946,11 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/ui/TpUIVariableInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107642,12 +96961,10 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
/*
* IDL Union - Discriminant - IDL:org/csapi/ui/TpUIVariablePartType:1.0
*/
-
disc_s_TpUIVariableInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpUIVariableInfo == 0 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -107656,10 +96973,8 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIVariableInfo == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107672,10 +96987,8 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIVariableInfo == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107688,10 +97001,8 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIVariableInfo == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107704,10 +97015,8 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIVariableInfo == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107720,11 +97029,9 @@ static void decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/ui/TpUIInfo:1.0 */
static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107750,14 +97057,11 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/ui/TpUIInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107768,12 +97072,10 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
/*
* IDL Union - Discriminant - IDL:org/csapi/ui/TpUIInfoType:1.0
*/
-
disc_s_TpUIInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpUIInfo == 0 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -107782,10 +97084,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107798,10 +97098,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107814,10 +97112,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 3 ) {
-
u_octet4_loop_InfoBinData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107835,10 +97131,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107851,10 +97145,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 5 ) {
-
u_octet4_loop_InfoMimeData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107872,10 +97164,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 6 ) {
-
u_octet4_loop_InfoWaveData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107893,10 +97183,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 7 ) {
-
u_octet4_loop_InfoAuData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107914,10 +97202,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 8 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -107930,10 +97216,8 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUIInfo == 9 ) {
-
/* Begin struct "org_csapi_ui_TpUISynthesisInfoData" */
@@ -107941,16 +97225,13 @@ static void decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinf
decode_org_csapi_ui_TpUISynthesisInfoData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_ui_TpUISynthesisInfoData" */
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/cc/TpCallAdditionalErrorInfo:1.0 */
static void decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -107966,14 +97247,11 @@ static void decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpCallAdditionalErrorInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107984,12 +97262,10 @@ static void decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallErrorType:1.0
*/
-
disc_s_TpCallAdditionalErrorInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAdditionalErrorInfo == 1 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -107999,23 +97275,19 @@ static void decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_,
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/TpCallLoadControlMechanism:1.0 */
static void decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108031,14 +97303,11 @@ static void decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpCallLoadControlMechanism:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108049,12 +97318,10 @@ static void decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallLoadControlMechanismType:1.0
*/
-
disc_s_TpCallLoadControlMechanism = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallLoadControlMechanism == 0 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -108063,11 +97330,9 @@ static void decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvbuff_t *tvb _U_,
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/cc/TpCallAdditionalTreatmentInfo:1.0 */
static void decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108083,14 +97348,11 @@ static void decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpCallAdditionalTreatmentInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108101,41 +97363,33 @@ static void decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvbuff_t *tvb _
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallTreatmentType:1.0
*/
-
disc_s_TpCallAdditionalTreatmentInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAdditionalTreatmentInfo == 2 ) {
-
/* Begin union "org_csapi_ui_TpUIInfo" */
-
decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_ui_TpUIInfo" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/TpCallPartyToChargeAdditionalInfo:1.0 */
static void decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108151,14 +97405,11 @@ static void decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpCallPartyToChargeAdditionalInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108169,12 +97420,10 @@ static void decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *t
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallPartyToChargeType:1.0
*/
-
disc_s_TpCallPartyToChargeAdditionalInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallPartyToChargeAdditionalInfo == 2 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108182,28 +97431,23 @@ static void decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *t
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/gccs/TpCallAppInfo:1.0 */
static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108221,14 +97465,11 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/gccs/TpCallAppInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108239,12 +97480,10 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/gccs/TpCallAppInfoType:1.0
*/
-
disc_s_TpCallAppInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAppInfo == 1 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -108253,10 +97492,8 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 2 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108266,10 +97503,8 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 3 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108279,10 +97514,8 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 4 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108292,10 +97525,8 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 5 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108305,10 +97536,8 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 6 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108316,15 +97545,12 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 7 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -108337,10 +97563,8 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 8 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108348,28 +97572,23 @@ static void decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/gccs/TpCallAdditionalReportInfo:1.0 */
static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108386,14 +97605,11 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/gccs/TpCallAdditionalReportInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108404,12 +97620,10 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/gccs/TpCallReportType:1.0
*/
-
disc_s_TpCallAdditionalReportInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAdditionalReportInfo == 4 ) {
-
/* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */
@@ -108417,15 +97631,12 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportInfo == 6 ) {
-
/* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */
@@ -108433,15 +97644,12 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportInfo == 7 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108449,15 +97657,12 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportInfo == 8 ) {
-
/* Begin struct "org_csapi_cc_TpCallServiceCode" */
@@ -108465,15 +97670,12 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallServiceCode" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportInfo == 9 ) {
-
/* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */
@@ -108481,15 +97683,12 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportInfo == 10 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -108502,10 +97701,8 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportInfo == 11 ) {
-
/* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */
@@ -108513,28 +97710,23 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb
decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/gccs/TpCallAdditionalReportCriteria:1.0 */
static void decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108551,14 +97743,11 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/gccs/TpCallAdditionalReportCriteria:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108569,12 +97758,10 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/gccs/TpCallReportType:1.0
*/
-
disc_s_TpCallAdditionalReportCriteria = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAdditionalReportCriteria == 5 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -108583,10 +97770,8 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalReportCriteria == 8 ) {
-
/* Begin struct "org_csapi_cc_TpCallServiceCode" */
@@ -108594,28 +97779,23 @@ static void decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t
decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallServiceCode" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/TpCallAdditionalEventInfo:1.0 */
static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108631,14 +97811,11 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpCallAdditionalEventInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108649,12 +97826,10 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallEventType:1.0
*/
-
disc_s_TpCallAdditionalEventInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAdditionalEventInfo == 3 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108662,15 +97837,12 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalEventInfo == 4 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108678,15 +97850,12 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalEventInfo == 5 ) {
-
/* Begin struct "org_csapi_cc_TpCallServiceCode" */
@@ -108694,15 +97863,12 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallServiceCode" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalEventInfo == 6 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108712,10 +97878,8 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalEventInfo == 11 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108725,10 +97889,8 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalEventInfo == 12 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -108736,15 +97898,12 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAdditionalEventInfo == 13 ) {
-
/* Begin struct "org_csapi_cc_TpCallServiceCode" */
@@ -108752,28 +97911,23 @@ static void decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_,
decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallServiceCode" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/TpAdditionalCallEventCriteria:1.0 */
static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108798,14 +97952,11 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpAdditionalCallEventCriteria:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108816,12 +97967,10 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallEventType:1.0
*/
-
disc_s_TpAdditionalCallEventCriteria = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpAdditionalCallEventCriteria == 3 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -108830,10 +97979,8 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAdditionalCallEventCriteria == 5 ) {
-
u_octet4_loop_OriginatingServiceCode = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -108848,17 +97995,14 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallServiceCode" */
}
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAdditionalCallEventCriteria == 6 ) {
-
u_octet4_loop_OriginatingReleaseCauseSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -108877,10 +98021,8 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAdditionalCallEventCriteria == 11 ) {
-
u_octet4_loop_TerminatingReleaseCauseSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -108899,10 +98041,8 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAdditionalCallEventCriteria == 13 ) {
-
u_octet4_loop_TerminatingServiceCode = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -108917,30 +98057,25 @@ static void decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _
decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCallServiceCode" */
}
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/TpCallAppInfo:1.0 */
static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -108960,14 +98095,11 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/TpCallAppInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -108978,12 +98110,10 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/TpCallAppInfoType:1.0
*/
-
disc_s_TpCallAppInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpCallAppInfo == 1 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -108992,10 +98122,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 2 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109005,10 +98133,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 3 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109018,10 +98144,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 4 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109031,10 +98155,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 5 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109044,10 +98166,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 6 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -109055,15 +98175,12 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 7 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -109076,10 +98193,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 8 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -109087,15 +98202,12 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 9 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -109103,15 +98215,12 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 10 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -109119,15 +98228,12 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 11 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -109136,10 +98242,8 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpCallAppInfo == 12 ) {
-
u_octet4_loop_CallAppCarrier = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -109154,30 +98258,25 @@ static void decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_cc_TpCarrier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_TpCarrier" */
}
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/mpccs/TpAppMultiPartyCallBack:1.0 */
static void decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109193,14 +98292,11 @@ static void decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/mpccs/TpAppMultiPartyCallBack:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109211,32 +98307,26 @@ static void decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/mpccs/TpAppMultiPartyCallBackRefType:1.0
*/
-
disc_s_TpAppMultiPartyCallBack = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpAppMultiPartyCallBack == 1 ) {
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAppMultiPartyCallBack == 2 ) {
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAppMultiPartyCallBack == 3 ) {
-
/* Begin struct "org_csapi_cc_mpccs_TpAppCallLegCallBack" */
@@ -109244,28 +98334,23 @@ static void decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _
decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpAppCallLegCallBack" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/mmccs/TpMediaStreamDataTypeRequest:1.0 */
static void decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109281,14 +98366,11 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/mmccs/TpMediaStreamDataTypeRequest:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109299,12 +98381,10 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/mmccs/TpMediaStreamDataTypeRequestType:1.0
*/
-
disc_s_TpMediaStreamDataTypeRequest = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMediaStreamDataTypeRequest == 0 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -109313,10 +98393,8 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMediaStreamDataTypeRequest == 1 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -109325,10 +98403,8 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMediaStreamDataTypeRequest == 2 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -109337,11 +98413,9 @@ static void decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallBack:1.0 */
static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109357,14 +98431,11 @@ static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallBack:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109375,32 +98446,26 @@ static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallBackRefType:1.0
*/
-
disc_s_TpAppMultiMediaCallBack = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpAppMultiMediaCallBack == 1 ) {
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAppMultiMediaCallBack == 2 ) {
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpAppMultiMediaCallBack == 3 ) {
-
/* Begin struct "org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack" */
@@ -109408,28 +98473,23 @@ static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _
decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cc/cccs/TpConfPolicy:1.0 */
static void decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109445,14 +98505,11 @@ static void decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cc/cccs/TpConfPolicy:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109463,12 +98520,10 @@ static void decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_i
/*
* IDL Union - Discriminant - IDL:org/csapi/cc/cccs/TpConfPolicyType:1.0
*/
-
disc_s_TpConfPolicy = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpConfPolicy == 1 ) {
-
/* Begin struct "org_csapi_cc_cccs_TpMonoMediaConfPolicy" */
@@ -109476,15 +98531,12 @@ static void decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpMonoMediaConfPolicy" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpConfPolicy == 2 ) {
-
/* Begin struct "org_csapi_cc_cccs_TpMultiMediaConfPolicy" */
@@ -109492,28 +98544,23 @@ static void decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_cccs_TpMultiMediaConfPolicy" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/ui/TpUITargetObject:1.0 */
static void decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109528,14 +98575,11 @@ static void decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/ui/TpUITargetObject:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109546,12 +98590,10 @@ static void decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_in
/*
* IDL Union - Discriminant - IDL:org/csapi/ui/TpUITargetObjectType:1.0
*/
-
disc_s_TpUITargetObject = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpUITargetObject == 0 ) {
-
/* Begin struct "org_csapi_cc_gccs_TpCallIdentifier" */
@@ -109559,15 +98601,12 @@ static void decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_gccs_TpCallIdentifier" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUITargetObject == 1 ) {
-
/* Begin struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */
@@ -109575,15 +98614,12 @@ static void decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpUITargetObject == 2 ) {
-
/* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
@@ -109591,16 +98627,13 @@ static void decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/mm/TpBindingEntry:1.0 */
static void decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109618,14 +98651,11 @@ static void decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mm/TpBindingEntry:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109636,12 +98666,10 @@ static void decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info
/*
* IDL Union - Discriminant - IDL:org/csapi/mm/TpBindingEntryType:1.0
*/
-
disc_s_TpBindingEntry = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpBindingEntry == 1 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -109650,10 +98678,8 @@ static void decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpBindingEntry == 2 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -109661,15 +98687,12 @@ static void decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpBindingEntry == 3 ) {
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -109678,23 +98701,19 @@ static void decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/dsc/TpDataSessionChargeOrder:1.0 */
static void decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109710,14 +98729,11 @@ static void decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/dsc/TpDataSessionChargeOrder:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109728,12 +98744,10 @@ static void decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/dsc/TpDataSessionChargeOrderCategory:1.0
*/
-
disc_s_TpDataSessionChargeOrder = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpDataSessionChargeOrder == 0 ) {
-
/* Begin struct "org_csapi_dsc_TpChargePerVolume" */
@@ -109741,15 +98755,12 @@ static void decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_,
decode_org_csapi_dsc_TpChargePerVolume_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpChargePerVolume" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpDataSessionChargeOrder == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -109762,11 +98773,9 @@ static void decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_,
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/dsc/TpDataSessionAdditionalErrorInfo:1.0 */
static void decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109782,14 +98791,11 @@ static void decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *t
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/dsc/TpDataSessionAdditionalErrorInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109800,12 +98806,10 @@ static void decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *t
/*
* IDL Union - Discriminant - IDL:org/csapi/dsc/TpDataSessionErrorType:1.0
*/
-
disc_s_TpDataSessionAdditionalErrorInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpDataSessionAdditionalErrorInfo == 1 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109815,23 +98819,19 @@ static void decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *t
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/dsc/TpDataSessionAdditionalReportInfo:1.0 */
static void decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109847,14 +98847,11 @@ static void decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/dsc/TpDataSessionAdditionalReportInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109865,12 +98862,10 @@ static void decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *
/*
* IDL Union - Discriminant - IDL:org/csapi/dsc/TpDataSessionReportType:1.0
*/
-
disc_s_TpDataSessionAdditionalReportInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpDataSessionAdditionalReportInfo == 2 ) {
-
/* Begin struct "org_csapi_dsc_TpDataSessionReleaseCause" */
@@ -109878,28 +98873,23 @@ static void decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *
decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_dsc_TpDataSessionReleaseCause" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/gms/TpMessageInfoProperty:1.0 */
static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -109917,14 +98907,11 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/gms/TpMessageInfoProperty:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -109935,12 +98922,10 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
/*
* IDL Union - Discriminant - IDL:org/csapi/gms/TpMessageInfoPropertyName:1.0
*/
-
disc_s_TpMessageInfoProperty = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessageInfoProperty == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -109953,10 +98938,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -109969,10 +98952,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -109985,10 +98966,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110001,10 +98980,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 5 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110017,10 +98994,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 6 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -110028,15 +99003,12 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 7 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -110044,15 +99016,12 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 8 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -110060,15 +99029,12 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 9 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -110076,15 +99042,12 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 10 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -110093,10 +99056,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 11 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110106,10 +99067,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 12 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110119,10 +99078,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 13 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110135,10 +99092,8 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 14 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110148,23 +99103,19 @@ static void decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/gms/TpMailboxInfoProperty:1.0 */
static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110181,14 +99132,11 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/gms/TpMailboxInfoProperty:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110199,12 +99147,10 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
/*
* IDL Union - Discriminant - IDL:org/csapi/gms/TpMailboxInfoPropertyName:1.0
*/
-
disc_s_TpMailboxInfoProperty = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMailboxInfoProperty == 1 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -110212,15 +99158,12 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110233,10 +99176,8 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110249,10 +99190,8 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110265,10 +99204,8 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 5 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110281,23 +99218,19 @@ static void decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/gms/TpMessagingEventInfo:1.0 */
static void decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110313,14 +99246,11 @@ static void decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/gms/TpMessagingEventInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110331,12 +99261,10 @@ static void decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
/*
* IDL Union - Discriminant - IDL:org/csapi/gms/TpMessagingEventName:1.0
*/
-
disc_s_TpMessagingEventInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessagingEventInfo == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110349,10 +99277,8 @@ static void decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessagingEventInfo == 1 ) {
-
/* Begin struct "org_csapi_gms_TpGMSNewMessageArrivedInfo" */
@@ -110360,16 +99286,13 @@ static void decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_gms_TpGMSNewMessageArrivedInfo" */
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/gms/TpMessagingEventCriteria:1.0 */
static void decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110385,14 +99308,11 @@ static void decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/gms/TpMessagingEventCriteria:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110403,12 +99323,10 @@ static void decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/gms/TpMessagingEventName:1.0
*/
-
disc_s_TpMessagingEventCriteria = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessagingEventCriteria == 1 ) {
-
/* Begin struct "org_csapi_gms_TpGMSNewMessageArrivedCriteria" */
@@ -110416,28 +99334,23 @@ static void decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_gms_TpGMSNewMessageArrivedCriteria" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/gms/TpFolderInfoProperty:1.0 */
static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110454,14 +99367,11 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/gms/TpFolderInfoProperty:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110472,12 +99382,10 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
/*
* IDL Union - Discriminant - IDL:org/csapi/gms/TpFolderInfoPropertyName:1.0
*/
-
disc_s_TpFolderInfoProperty = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpFolderInfoProperty == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110490,10 +99398,8 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110506,10 +99412,8 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110522,10 +99426,8 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110538,10 +99440,8 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 5 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110554,23 +99454,19 @@ static void decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/cs/TpChargingParameterValue:1.0 */
static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110591,14 +99487,11 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cs/TpChargingParameterValue:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110609,12 +99502,10 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
/*
* IDL Union - Discriminant - IDL:org/csapi/cs/TpChargingParameterValueType:1.0
*/
-
disc_s_TpChargingParameterValue = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpChargingParameterValue == 0 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -110623,10 +99514,8 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpChargingParameterValue == 1 ) {
-
my_float = get_CDR_float(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -110635,10 +99524,8 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpChargingParameterValue == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110651,10 +99538,8 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpChargingParameterValue == 3 ) {
-
u_octet1 = get_CDR_boolean(tvb,offset);
if (tree) {
@@ -110663,10 +99548,8 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpChargingParameterValue == 4 ) {
-
u_octet4_loop_OctetValue = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110684,11 +99567,9 @@ static void decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, p
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/cs/TpAppInformation:1.0 */
static void decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110704,14 +99585,11 @@ static void decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/cs/TpAppInformation:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110722,12 +99600,10 @@ static void decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_in
/*
* IDL Union - Discriminant - IDL:org/csapi/cs/TpAppInformationType:1.0
*/
-
disc_s_TpAppInformation = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpAppInformation == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110740,11 +99616,9 @@ static void decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/policy/TpPolicyType:1.0 */
static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110760,14 +99634,11 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/policy/TpPolicyType:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110778,12 +99649,10 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
/*
* IDL Union - Discriminant - IDL:org/csapi/policy/TpPolicyTypeInfo:1.0
*/
-
disc_s_TpPolicyType = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpPolicyType == 0 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110793,10 +99662,8 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPolicyType == 1 ) {
-
/* Begin struct "org_csapi_policy_TpPolicyType_TpPolicyRecordType" */
@@ -110804,15 +99671,12 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyType_TpPolicyRecordType" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPolicyType == 2 ) {
-
/* Begin struct "org_csapi_policy_TpPolicyType_TpPolicyListType" */
@@ -110820,15 +99684,12 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_policy_TpPolicyType_TpPolicyListType" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPolicyType == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110841,10 +99702,8 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPolicyType == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -110857,11 +99716,9 @@ static void decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_in
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/pam/TpPAMContextData:1.0 */
static void decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110877,14 +99734,11 @@ static void decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/pam/TpPAMContextData:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110895,12 +99749,10 @@ static void decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_i
/*
* IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMContextName:1.0
*/
-
disc_s_TpPAMContextData = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpPAMContextData == 1 ) {
-
/* Begin struct "org_csapi_pam_TpPAMCommunicationContext" */
@@ -110908,28 +99760,23 @@ static void decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_i
decode_org_csapi_pam_TpPAMCommunicationContext_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMCommunicationContext" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/pam/TpPAMEventInfo:1.0 */
static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -110944,14 +99791,11 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/pam/TpPAMEventInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -110962,12 +99806,10 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
/*
* IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMEventName:1.0
*/
-
disc_s_TpPAMEventInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpPAMEventInfo == 0 ) {
-
/* Begin struct "org_csapi_pam_TpPAMIPSEventData" */
@@ -110975,15 +99817,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMIPSEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMIPSEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 1 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAVCEventData" */
@@ -110991,15 +99830,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMAVCEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAVCEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 2 ) {
-
/* Begin struct "org_csapi_pam_TpPAMWCEventData" */
@@ -111007,15 +99843,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMWCEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMWCEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 3 ) {
-
/* Begin struct "org_csapi_pam_TpPAMICEventData" */
@@ -111023,15 +99856,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMICEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMICEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 4 ) {
-
/* Begin struct "org_csapi_pam_TpPAMIDEventData" */
@@ -111039,15 +99869,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMIDEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMIDEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 5 ) {
-
/* Begin struct "org_csapi_pam_TpPAMGMCEventData" */
@@ -111055,15 +99882,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMGMCEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMGMCEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 6 ) {
-
/* Begin struct "org_csapi_pam_TpPAMACEventData" */
@@ -111071,15 +99895,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMACEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMACEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 7 ) {
-
/* Begin struct "org_csapi_pam_TpPAMADEventData" */
@@ -111087,15 +99908,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMADEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMADEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 8 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAAEventData" */
@@ -111103,15 +99921,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMAAEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAAEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 9 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAUEventData" */
@@ -111119,15 +99934,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMAUEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAUEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 10 ) {
-
/* Begin struct "org_csapi_pam_TpPAMCCEventData" */
@@ -111135,15 +99947,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMCCEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMCCEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 11 ) {
-
/* Begin struct "org_csapi_pam_TpPAMACPSEventData" */
@@ -111151,15 +99960,12 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMACPSEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMACPSEventData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMEventInfo == 12 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAPSEventData" */
@@ -111167,16 +99973,13 @@ static void decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_inf
decode_org_csapi_pam_TpPAMAPSEventData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAPSEventData" */
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/pam/TpPAMNotificationInfo:1.0 */
static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -111191,14 +99994,11 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/pam/TpPAMNotificationInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111209,12 +100009,10 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
/*
* IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMEventName:1.0
*/
-
disc_s_TpPAMNotificationInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpPAMNotificationInfo == 0 ) {
-
/* Begin struct "org_csapi_pam_TpPAMIPSNotificationData" */
@@ -111222,15 +100020,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMIPSNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 1 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAVCNotificationData" */
@@ -111238,15 +100033,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAVCNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 2 ) {
-
/* Begin struct "org_csapi_pam_TpPAMWCNotificationData" */
@@ -111254,15 +100046,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMWCNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMWCNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 3 ) {
-
/* Begin struct "org_csapi_pam_TpPAMICNotificationData" */
@@ -111270,15 +100059,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMICNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMICNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 4 ) {
-
/* Begin struct "org_csapi_pam_TpPAMIDNotificationData" */
@@ -111286,15 +100072,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMIDNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMIDNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 5 ) {
-
/* Begin struct "org_csapi_pam_TpPAMGMCNotificationData" */
@@ -111302,15 +100085,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMGMCNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 6 ) {
-
/* Begin struct "org_csapi_pam_TpPAMACNotificationData" */
@@ -111318,15 +100098,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMACNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMACNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 7 ) {
-
/* Begin struct "org_csapi_pam_TpPAMADNotificationData" */
@@ -111334,15 +100111,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMADNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMADNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 8 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAANotificationData" */
@@ -111350,15 +100124,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMAANotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAANotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 9 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAUNotificationData" */
@@ -111366,15 +100137,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMAUNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAUNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 10 ) {
-
/* Begin struct "org_csapi_pam_TpPAMCCNotificationData" */
@@ -111382,15 +100150,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMCCNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMCCNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 11 ) {
-
/* Begin struct "org_csapi_pam_TpPAMACPSNotificationData" */
@@ -111398,15 +100163,12 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMACPSNotificationData" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpPAMNotificationInfo == 12 ) {
-
/* Begin struct "org_csapi_pam_TpPAMAPSNotificationData" */
@@ -111414,16 +100176,13 @@ static void decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, pac
decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_pam_TpPAMAPSNotificationData" */
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/pam/TpPAMPreferenceData:1.0 */
static void decode_org_csapi_pam_TpPAMPreferenceData_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -111439,14 +100198,11 @@ static void decode_org_csapi_pam_TpPAMPreferenceData_un(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/pam/TpPAMPreferenceData:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111457,35 +100213,29 @@ static void decode_org_csapi_pam_TpPAMPreferenceData_un(tvbuff_t *tvb _U_, packe
/*
* IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMPreferenceType:1.0
*/
-
disc_s_TpPAMPreferenceData = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpPAMPreferenceData == 1 ) {
-
get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary);
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/mmm/TpFolderInfoProperty:1.0 */
static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -111503,14 +100253,11 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpFolderInfoProperty:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111521,12 +100268,10 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpFolderInfoPropertyName:1.0
*/
-
disc_s_TpFolderInfoProperty = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpFolderInfoProperty == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111539,10 +100284,8 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111555,10 +100298,8 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 3 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -111567,10 +100308,8 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpFolderInfoProperty == 4 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -111579,23 +100318,19 @@ static void decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/mmm/TpMailboxInfoProperty:1.0 */
static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -111613,14 +100348,11 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpMailboxInfoProperty:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111631,12 +100363,10 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpMailboxInfoPropertyName:1.0
*/
-
disc_s_TpMailboxInfoProperty = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMailboxInfoProperty == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111649,10 +100379,8 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111665,10 +100393,8 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111681,10 +100407,8 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMailboxInfoProperty == 4 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -111693,23 +100417,19 @@ static void decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/mmm/TpMessageInfoProperty:1.0 */
static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -111727,14 +100447,11 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpMessageInfoProperty:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111745,12 +100462,10 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessageInfoPropertyName:1.0
*/
-
disc_s_TpMessageInfoProperty = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessageInfoProperty == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111763,10 +100478,8 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111779,10 +100492,8 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 3 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111795,10 +100506,8 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 4 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -111807,10 +100516,8 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageInfoProperty == 5 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111820,23 +100527,19 @@ static void decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, pac
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/mmm/TpMessageHeaderField:1.0 */
static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -111868,14 +100571,11 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpMessageHeaderField:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -111886,12 +100586,10 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessageHeaderFieldType:1.0
*/
-
disc_s_TpMessageHeaderField = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessageHeaderField == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111904,10 +100602,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 1 ) {
-
u_octet4_loop_From = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111922,17 +100618,14 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 2 ) {
-
/* Begin struct "org_csapi_TpAddress" */
@@ -111940,15 +100633,12 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 3 ) {
-
u_octet4_loop_ReplyTo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111963,17 +100653,14 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 4 ) {
-
u_octet4_loop_To = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -111988,17 +100675,14 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 5 ) {
-
u_octet4_loop_Cc = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112013,17 +100697,14 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 6 ) {
-
u_octet4_loop_Bcc = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112038,17 +100719,14 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_TpAddress" */
}
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 7 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112061,10 +100739,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 8 ) {
-
u_octet4_loop_InReplyTo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112086,10 +100762,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 9 ) {
-
u_octet4_loop_References = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112111,10 +100785,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 10 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112127,10 +100799,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 11 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112143,10 +100813,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 12 ) {
-
u_octet4_loop_Keywords = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112168,10 +100836,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 13 ) {
-
/* Begin struct "org_csapi_mmm_TpGenericHeaderField" */
@@ -112179,15 +100845,12 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpGenericHeaderField" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 14 ) {
-
/* Begin struct "org_csapi_mmm_TpGenericHeaderField" */
@@ -112195,15 +100858,12 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpGenericHeaderField" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 15 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112216,10 +100876,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 16 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112232,10 +100890,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 17 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112248,10 +100904,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 18 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112264,10 +100918,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 19 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112280,10 +100932,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 20 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112296,10 +100946,8 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 21 ) {
-
/* Begin struct "org_csapi_mmm_TpGenericHeaderField" */
@@ -112307,15 +100955,12 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpGenericHeaderField" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 22 ) {
-
/* Begin struct "org_csapi_mmm_TpGenericHeaderField" */
@@ -112323,15 +100968,12 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpGenericHeaderField" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageHeaderField == 23 ) {
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -112341,11 +100983,9 @@ static void decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/mmm/TpDeliveryTime:1.0 */
static void decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -112362,14 +101002,11 @@ static void decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpDeliveryTime:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -112380,12 +101017,10 @@ static void decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_inf
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpDeliveryTimeType:1.0
*/
-
disc_s_TpDeliveryTime = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpDeliveryTime == 1 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112398,23 +101033,19 @@ static void decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_inf
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/mmm/TpMessageTreatment:1.0 */
static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -112431,14 +101062,11 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpMessageTreatment:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -112449,12 +101077,10 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessageTreatmentType:1.0
*/
-
disc_s_TpMessageTreatment = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessageTreatment == 1 ) {
-
s_octet4 = get_CDR_long(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
@@ -112463,10 +101089,8 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageTreatment == 2 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112479,26 +101103,20 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageTreatment == 3 ) {
-
/* Begin union "org_csapi_mmm_TpDeliveryTime" */
-
decode_org_csapi_mmm_TpDeliveryTime_un(tvb, pinfo, tree, offset, header, operation);
-
/* End union "org_csapi_mmm_TpDeliveryTime" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessageTreatment == 4 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112511,11 +101129,9 @@ static void decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet
return; /* End Compare for this discriminant type */
}
-
}
-
/* Union = IDL:org/csapi/mmm/TpMessagingEventCriteria:1.0 */
static void decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -112531,14 +101147,11 @@ static void decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpMessagingEventCriteria:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -112549,12 +101162,10 @@ static void decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessagingEventName:1.0
*/
-
disc_s_TpMessagingEventCriteria = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessagingEventCriteria == 1 ) {
-
/* Begin struct "org_csapi_mmm_TpNewMailboxMessageArrivedCriteria" */
@@ -112562,15 +101173,12 @@ static void decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpNewMailboxMessageArrivedCriteria" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessagingEventCriteria == 2 ) {
-
/* Begin struct "org_csapi_mmm_TpNewMessageArrivedCriteria" */
@@ -112578,28 +101186,23 @@ static void decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_,
decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpNewMessageArrivedCriteria" */
return; /* End Compare for this discriminant type */
}
-
/* Default Union Case Start */
-
s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian, boundary);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-2,2,"Dummy = %i",s_octet2);
}
/* Default Union Case End */
-
}
-
/* Union = IDL:org/csapi/mmm/TpMessagingEventInfo:1.0 */
static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_) {
@@ -112615,14 +101218,11 @@ static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
-
stream_is_big_endian = is_big_endian(header); /* get stream endianess */
-
/*
* IDL Union Start - IDL:org/csapi/mmm/TpMessagingEventInfo:1.0
*/
-
u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary);
@@ -112633,12 +101233,10 @@ static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
/*
* IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessagingEventName:1.0
*/
-
disc_s_TpMessagingEventInfo = (gint32) u_octet4; /* save Enum Value discriminant and cast to gint32 */
if (disc_s_TpMessagingEventInfo == 0 ) {
-
u_octet4 = get_CDR_string(tvb, &seq, offset, stream_is_big_endian, boundary);
if (tree) {
@@ -112651,10 +101249,8 @@ static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessagingEventInfo == 1 ) {
-
/* Begin struct "org_csapi_mmm_TpNewMailboxMessageArrivedInfo" */
@@ -112662,15 +101258,12 @@ static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpNewMailboxMessageArrivedInfo" */
return; /* End Compare for this discriminant type */
}
-
if (disc_s_TpMessagingEventInfo == 2 ) {
-
/* Begin struct "org_csapi_mmm_TpNewMessageArrivedInfo" */
@@ -112678,16 +101271,13 @@ static void decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, pack
decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvb, pinfo, tree, offset, header, operation);
-
/* End struct "org_csapi_mmm_TpNewMessageArrivedInfo" */
return; /* End Compare for this discriminant type */
}
-
}
-
/*
* Called once we accept the packet as being for us; it sets the
* Protocol and Info columns and creates the top-level protocol
@@ -112731,14 +101321,11 @@ static gboolean dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *pt
}
-
-
switch(header->message_type) {
case Request:
case Reply:
-
if (strcmp(operation, org_csapi_IpService_setCallback_op) == 0
&& (!idlname || strcmp(idlname, "org/csapi/IpService") == 0)) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
@@ -119287,14 +107874,12 @@ static gboolean dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *pt
} /* switch */
-
return FALSE;
} /* End of main dissector */
-
/* Register the protocol with Ethereal */
void proto_register_giop_parlay(void) {
@@ -119327,1217 +107912,765 @@ void proto_register_giop_parlay(void) {
}
-
-
/* register me as handler for these interfaces */
void proto_register_handoff_giop_parlay(void) {
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/IpService", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/am/IpAccountManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/am/IpAppAccountManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppConfCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppConfCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpAppSubConfCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpConfCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpConfCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/cccs/IpSubConfCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpAppCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpAppCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/gccs/IpCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpAppMultiMediaCallLeg", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaCallLeg", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mmccs/IpMultiMediaStream", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppCallLeg", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppMultiPartyCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpAppMultiPartyCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpCallLeg", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpMultiPartyCall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cc/mpccs/IpMultiPartyCallControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpConnectivityManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpEnterpriseNetwork", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpEnterpriseNetworkSite", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpQoSMenu", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpQoSTemplate", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpVPrN", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cm/IpVPrP", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpAppChargingManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpAppChargingSession", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpChargingManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/cs/IpChargingSession", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpAppDataSession", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpAppDataSessionControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpDataSession", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/dsc/IpDataSessionControlManager", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpAccess", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpClientAPILevelAuthentication", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_access/trust_and_security/IpInitial", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/discovery/IpServiceDiscovery", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppFaultManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppHeartBeat", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppHeartBeatMgmt", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppLoadManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpAppOAM", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpFaultManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpHeartBeat", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpHeartBeatMgmt", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpLoadManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/integrity/IpOAM", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/notification/IpAppEventNotification", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/notification/IpEventNotification", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/service_agreement/IpAppServiceAgreementManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_application/service_agreement/IpServiceAgreementManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/notification/IpClientEventNotification", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/notification/IpEventNotification", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpClientAppManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpEntOpAccountManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceContractManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* 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 for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_enterprise_operator/service_subscription/IpServiceProfileManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/discovery/IpFwServiceDiscovery", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwFaultManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwHeartBeat", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwHeartBeatMgmt", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwLoadManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpFwOAM", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcFaultManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcHeartBeat", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcHeartBeatMgmt", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcLoadManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/integrity/IpSvcOAM", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/notification/IpFwEventNotification", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/notification/IpSvcEventNotification", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/service_lifecycle/IpServiceInstanceLifecycleManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/fw/fw_service/service_registration/IpFwServiceRegistration", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpAppMessagingManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMailbox", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMailboxFolder", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMessage", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/gms/IpMessagingManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ub/IpAppUserBinding", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ub/IpUserBinding", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpAppTriggeredUserLocation", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpAppUserLocation", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpTriggeredUserLocation", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ul/IpUserLocation", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ulc/IpAppUserLocationCamel", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ulc/IpUserLocationCamel", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ule/IpAppUserLocationEmergency", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/ule/IpUserLocationEmergency", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/us/IpAppUserStatus", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mm/us/IpUserStatus", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMailbox", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMultiMediaMessaging", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpAppMultiMediaMessagingManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMailbox", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMultiMediaMessaging", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/mmm/IpMultiMediaMessagingManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpAppPAMPreferenceCheck", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMAgentPresence", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMAvailability", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMIdentityPresence", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/access/IpPAMPresenceAvailabilityManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpAppPAMEventHandler", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpPAMEventHandler", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/event/IpPAMEventManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentAssignment", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMAgentTypeManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMCapabilityManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMIdentityManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMIdentityTypeManagement", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/pam/provisioning/IpPAMProvisioningManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/evaluation/IpAppPolicyDomain", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/evaluation/IpPolicyEvalManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicy", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyAction", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyCondition", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyDomain", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyEventDefinition", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyGroup", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyIterator", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyRepository", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicyRule", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/policy/provisioning/IpPolicySignature", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpAppExtendedTerminalCapabilities", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpExtendedTerminalCapabilities", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/termcap/IpTerminalCapabilities", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUI", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUIAdminManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUICall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpAppUIManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUI", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUIAdminManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUICall", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Explicit Dissection */
register_giop_user_module(dissect_parlay, "PARLAY", "org/csapi/ui/IpUIManager", proto_parlay ); /* explicit dissector */
-
-
-
/* Register for Heuristic Dissection */
register_giop_user(dissect_parlay, "PARLAY" ,proto_parlay); /* heuristic dissector */
-
}
-
#ifndef ENABLE_STATIC
G_MODULE_EXPORT void
@@ -120552,7 +108685,5 @@ G_MODULE_EXPORT void
plugin_reg_handoff(void){
proto_register_handoff_giop_parlay();
}
-
#endif
-